linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] wireless: zd1211rw: fix build warning
@ 2020-08-31  4:34 Allen Pais
  2020-08-31 14:04 ` Kalle Valo
  2020-09-01  8:59 ` Kalle Valo
  0 siblings, 2 replies; 3+ messages in thread
From: Allen Pais @ 2020-08-31  4:34 UTC (permalink / raw)
  To: kvalo; +Cc: dsd, kune, davem, kuba, linux-wireless, Allen Pais,
	kernel test robot

 Tasklet conversion patches intoruced a build warning
in init_usb_rx(), this patch fixes the same.

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Allen Pais <allen.lkml@gmail.com>
---
 drivers/net/wireless/zydas/zd1211rw/zd_usb.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/net/wireless/zydas/zd1211rw/zd_usb.c b/drivers/net/wireless/zydas/zd1211rw/zd_usb.c
index 8b3d248ba..71ec3d423 100644
--- a/drivers/net/wireless/zydas/zd1211rw/zd_usb.c
+++ b/drivers/net/wireless/zydas/zd1211rw/zd_usb.c
@@ -1178,8 +1178,9 @@ static inline void init_usb_rx(struct zd_usb *usb)
 	}
 	ZD_ASSERT(rx->fragment_length == 0);
 	INIT_DELAYED_WORK(&rx->idle_work, zd_rx_idle_timer_handler);
-	rx->reset_timer_tasklet.func = (void (*)(unsigned long))
+	rx->reset_timer_tasklet.func = (void (*))
 					zd_usb_reset_rx_idle_timer_tasklet;
+	rx->reset_timer_tasklet.data = (unsigned long)&rx->reset_timer_tasklet;
 }
 
 static inline void init_usb_tx(struct zd_usb *usb)
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] wireless: zd1211rw: fix build warning
  2020-08-31  4:34 [PATCH] wireless: zd1211rw: fix build warning Allen Pais
@ 2020-08-31 14:04 ` Kalle Valo
  2020-09-01  8:59 ` Kalle Valo
  1 sibling, 0 replies; 3+ messages in thread
From: Kalle Valo @ 2020-08-31 14:04 UTC (permalink / raw)
  To: Allen Pais; +Cc: dsd, kune, davem, kuba, linux-wireless, kernel test robot

Allen Pais <allen.lkml@gmail.com> writes:

>  Tasklet conversion patches intoruced a build warning
> in init_usb_rx(), this patch fixes the same.
>
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Allen Pais <allen.lkml@gmail.com>

I'll change the title to:

zd1211rw: fix build warning

And add:

Fixes: 26721b02466e ("zd1211rw: convert tasklets to use new tasklet_setup() API")

-- 
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: zd1211rw: fix build warning
  2020-08-31  4:34 [PATCH] wireless: zd1211rw: fix build warning Allen Pais
  2020-08-31 14:04 ` Kalle Valo
@ 2020-09-01  8:59 ` Kalle Valo
  1 sibling, 0 replies; 3+ messages in thread
From: Kalle Valo @ 2020-09-01  8:59 UTC (permalink / raw)
  To: Allen Pais
  Cc: dsd, kune, davem, kuba, linux-wireless, Allen Pais,
	kernel test robot

Allen Pais <allen.lkml@gmail.com> wrote:

> Tasklet conversion patches intoruced a build warning
> in init_usb_rx(), this patch fixes the same.
> 
> Reported-by: kernel test robot <lkp@intel.com>
> Fixes: 26721b02466e ("zd1211rw: convert tasklets to use new tasklet_setup() API")
> Signed-off-by: Allen Pais <allen.lkml@gmail.com>

Patch applied to wireless-drivers-next.git, thanks.

5d4650ae8ba6 zd1211rw: fix build warning

-- 
https://patchwork.kernel.org/patch/11745469/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-09-01  9:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-31  4:34 [PATCH] wireless: zd1211rw: fix build warning Allen Pais
2020-08-31 14:04 ` Kalle Valo
2020-09-01  8:59 ` Kalle Valo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).