rtl8188eu: Fix remaining warnings in build

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2014-12-27 18:06:03 -06:00
parent 6348961d3a
commit 4a660c6a67
4 changed files with 35 additions and 5 deletions

View file

@ -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);