* [PATCH] net: wwan: t7xx: Make local function static
@ 2025-11-20 11:52 Slark Xiao
2025-11-21 12:53 ` Loic Poulain
2025-11-22 2:20 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Slark Xiao @ 2025-11-20 11:52 UTC (permalink / raw)
To: chandrashekar.devegowda, chiranjeevi.rapolu, haijun.liu,
loic.poulain, ryazanov.s.a, johannes, andrew+netdev, davem,
edumazet, pabeni, kuba
Cc: netdev, linux-kernel, Slark Xiao
This function was used in t7xx_hif_cldma.c only. Make it static
as it should be.
Signed-off-by: Slark Xiao <slark_xiao@163.com>
---
drivers/net/wwan/t7xx/t7xx_hif_cldma.c | 2 +-
drivers/net/wwan/t7xx/t7xx_hif_cldma.h | 2 --
2 files changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/net/wwan/t7xx/t7xx_hif_cldma.c b/drivers/net/wwan/t7xx/t7xx_hif_cldma.c
index 97163e1e5783..bd16788882f0 100644
--- a/drivers/net/wwan/t7xx/t7xx_hif_cldma.c
+++ b/drivers/net/wwan/t7xx/t7xx_hif_cldma.c
@@ -899,7 +899,7 @@ static void t7xx_cldma_hw_start_send(struct cldma_ctrl *md_ctrl, int qno,
* @queue: CLDMA queue.
* @recv_skb: Receiving skb callback.
*/
-void t7xx_cldma_set_recv_skb(struct cldma_queue *queue,
+static void t7xx_cldma_set_recv_skb(struct cldma_queue *queue,
int (*recv_skb)(struct cldma_queue *queue, struct sk_buff *skb))
{
queue->recv_skb = recv_skb;
diff --git a/drivers/net/wwan/t7xx/t7xx_hif_cldma.h b/drivers/net/wwan/t7xx/t7xx_hif_cldma.h
index f2d9941be9c8..9d0107e18a7b 100644
--- a/drivers/net/wwan/t7xx/t7xx_hif_cldma.h
+++ b/drivers/net/wwan/t7xx/t7xx_hif_cldma.h
@@ -126,8 +126,6 @@ void t7xx_cldma_switch_cfg(struct cldma_ctrl *md_ctrl, enum cldma_cfg cfg_id);
void t7xx_cldma_start(struct cldma_ctrl *md_ctrl);
int t7xx_cldma_stop(struct cldma_ctrl *md_ctrl);
void t7xx_cldma_reset(struct cldma_ctrl *md_ctrl);
-void t7xx_cldma_set_recv_skb(struct cldma_queue *queue,
- int (*recv_skb)(struct cldma_queue *queue, struct sk_buff *skb));
int t7xx_cldma_send_skb(struct cldma_ctrl *md_ctrl, int qno, struct sk_buff *skb);
void t7xx_cldma_stop_all_qs(struct cldma_ctrl *md_ctrl, enum mtk_txrx tx_rx);
void t7xx_cldma_clear_all_qs(struct cldma_ctrl *md_ctrl, enum mtk_txrx tx_rx);
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] net: wwan: t7xx: Make local function static
2025-11-20 11:52 [PATCH] net: wwan: t7xx: Make local function static Slark Xiao
@ 2025-11-21 12:53 ` Loic Poulain
2025-11-22 2:20 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Loic Poulain @ 2025-11-21 12:53 UTC (permalink / raw)
To: Slark Xiao
Cc: chandrashekar.devegowda, chiranjeevi.rapolu, haijun.liu,
ryazanov.s.a, johannes, andrew+netdev, davem, edumazet, pabeni,
kuba, netdev, linux-kernel
On Thu, Nov 20, 2025 at 12:53 PM Slark Xiao <slark_xiao@163.com> wrote:
>
> This function was used in t7xx_hif_cldma.c only. Make it static
> as it should be.
>
> Signed-off-by: Slark Xiao <slark_xiao@163.com>
I believe it would be best to target net-next for this change.
Reviewed-by: Loic Poulain <loic.poulain@qualcomm.com>
> ---
> drivers/net/wwan/t7xx/t7xx_hif_cldma.c | 2 +-
> drivers/net/wwan/t7xx/t7xx_hif_cldma.h | 2 --
> 2 files changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/drivers/net/wwan/t7xx/t7xx_hif_cldma.c b/drivers/net/wwan/t7xx/t7xx_hif_cldma.c
> index 97163e1e5783..bd16788882f0 100644
> --- a/drivers/net/wwan/t7xx/t7xx_hif_cldma.c
> +++ b/drivers/net/wwan/t7xx/t7xx_hif_cldma.c
> @@ -899,7 +899,7 @@ static void t7xx_cldma_hw_start_send(struct cldma_ctrl *md_ctrl, int qno,
> * @queue: CLDMA queue.
> * @recv_skb: Receiving skb callback.
> */
> -void t7xx_cldma_set_recv_skb(struct cldma_queue *queue,
> +static void t7xx_cldma_set_recv_skb(struct cldma_queue *queue,
> int (*recv_skb)(struct cldma_queue *queue, struct sk_buff *skb))
> {
> queue->recv_skb = recv_skb;
> diff --git a/drivers/net/wwan/t7xx/t7xx_hif_cldma.h b/drivers/net/wwan/t7xx/t7xx_hif_cldma.h
> index f2d9941be9c8..9d0107e18a7b 100644
> --- a/drivers/net/wwan/t7xx/t7xx_hif_cldma.h
> +++ b/drivers/net/wwan/t7xx/t7xx_hif_cldma.h
> @@ -126,8 +126,6 @@ void t7xx_cldma_switch_cfg(struct cldma_ctrl *md_ctrl, enum cldma_cfg cfg_id);
> void t7xx_cldma_start(struct cldma_ctrl *md_ctrl);
> int t7xx_cldma_stop(struct cldma_ctrl *md_ctrl);
> void t7xx_cldma_reset(struct cldma_ctrl *md_ctrl);
> -void t7xx_cldma_set_recv_skb(struct cldma_queue *queue,
> - int (*recv_skb)(struct cldma_queue *queue, struct sk_buff *skb));
> int t7xx_cldma_send_skb(struct cldma_ctrl *md_ctrl, int qno, struct sk_buff *skb);
> void t7xx_cldma_stop_all_qs(struct cldma_ctrl *md_ctrl, enum mtk_txrx tx_rx);
> void t7xx_cldma_clear_all_qs(struct cldma_ctrl *md_ctrl, enum mtk_txrx tx_rx);
> --
> 2.25.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] net: wwan: t7xx: Make local function static
2025-11-20 11:52 [PATCH] net: wwan: t7xx: Make local function static Slark Xiao
2025-11-21 12:53 ` Loic Poulain
@ 2025-11-22 2:20 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-11-22 2:20 UTC (permalink / raw)
To: Slark Xiao
Cc: chandrashekar.devegowda, chiranjeevi.rapolu, haijun.liu,
loic.poulain, ryazanov.s.a, johannes, andrew+netdev, davem,
edumazet, pabeni, kuba, netdev, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Thu, 20 Nov 2025 19:52:08 +0800 you wrote:
> This function was used in t7xx_hif_cldma.c only. Make it static
> as it should be.
>
> Signed-off-by: Slark Xiao <slark_xiao@163.com>
> ---
> drivers/net/wwan/t7xx/t7xx_hif_cldma.c | 2 +-
> drivers/net/wwan/t7xx/t7xx_hif_cldma.h | 2 --
> 2 files changed, 1 insertion(+), 3 deletions(-)
Here is the summary with links:
- net: wwan: t7xx: Make local function static
https://git.kernel.org/netdev/net-next/c/501253b61d84
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-11-22 2:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-11-20 11:52 [PATCH] net: wwan: t7xx: Make local function static Slark Xiao
2025-11-21 12:53 ` Loic Poulain
2025-11-22 2:20 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®