net: usbnet: Fix -Wcast-function-type
correct usage prototype of callback in tasklet_init(). Report by https://github.com/KSPP/linux/issues/20 Signed-off-by: Phong Tran <tranmanphong@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1d4a09dadb
commit
2eb1d3f4bc
|
@ -1573,6 +1573,13 @@ static void usbnet_bh (struct timer_list *t)
|
|||
}
|
||||
}
|
||||
|
||||
static void usbnet_bh_tasklet(unsigned long data)
|
||||
{
|
||||
struct timer_list *t = (struct timer_list *)data;
|
||||
|
||||
usbnet_bh(t);
|
||||
}
|
||||
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
|
@ -1700,7 +1707,7 @@ usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
|
|||
skb_queue_head_init (&dev->txq);
|
||||
skb_queue_head_init (&dev->done);
|
||||
skb_queue_head_init(&dev->rxq_pause);
|
||||
dev->bh.func = (void (*)(unsigned long))usbnet_bh;
|
||||
dev->bh.func = usbnet_bh_tasklet;
|
||||
dev->bh.data = (unsigned long)&dev->delay;
|
||||
INIT_WORK (&dev->kevent, usbnet_deferred_kevent);
|
||||
init_usb_anchor(&dev->deferred);
|
||||
|
|
Loading…
Reference in New Issue