mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-06-23 16:44:20 +00:00
rtl8188eu: Fix remaining warnings in build
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
6348961d3a
commit
4a660c6a67
4 changed files with 35 additions and 5 deletions
|
@ -337,7 +337,12 @@ _func_enter_;
|
|||
//skb->ip_summed = CHECKSUM_NONE;
|
||||
skb->dev = pnetdev;
|
||||
#if (LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,35))
|
||||
#if (LINUX_VERSION_CODE < KERNEL_VERSION(3, 16, 0))
|
||||
skb_set_queue_mapping(skb, rtw_recv_select_queue(skb));
|
||||
#else
|
||||
skb_set_queue_mapping(skb, rtw_recv_select_queue(skb,
|
||||
NULL, NULL));
|
||||
#endif
|
||||
#endif //LINUX_VERSION_CODE>=KERNEL_VERSION(2,6,35)
|
||||
|
||||
_rtw_xmit_entry(skb, pnetdev);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue