Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
sudo make && make install
sudo echo blacklist r8188eu > /etc/modprobe.d/realtek_blacklist.conf
6 changes: 4 additions & 2 deletions os_dep/linux/os_intfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1098,8 +1098,10 @@ unsigned int rtw_classify8021d(struct sk_buff *skb)
return dscp >> 5;
}


#if (LINUX_VERSION_CODE>=KERNEL_VERSION(4,19,0))
#if (LINUX_VERSION_CODE>=KERNEL_VERSION(5,2,0))
static u16 rtw_select_queue(struct net_device *dev, struct sk_buff *skb,
struct net_device *sb_dev)
#elif (LINUX_VERSION_CODE>=KERNEL_VERSION(4,19,0))
static u16 rtw_select_queue(struct net_device *dev, struct sk_buff *skb,
struct net_device *sb_dev,
select_queue_fallback_t fallback)
Expand Down