cilynx / rtl88x2bu

rtl88x2bu driver updated for current kernels.

Home Page:http://www.wolfteck.com/2018/02/22/wsky_1200mbps_wireless_usb_wifi_adapter/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Branch fix-6.0 also partially needed for 5.19.3

Fjodor42 opened this issue · comments

Discovering #217, I wanted to downgrade to 5.19.3.

Then I discovered that in order for the code to compile, I should change all instances of

#if LINUX_VERSION_CODE >= KERNEL_VERSION(6, 0, 0) to

#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 19, 3)

Except for the one at line 1179 in os_dep/linux/ioctl_cfg80211.c

Still the same symptoms as #217, though, so I am back on 5.19.1

Do note that I didn't try 5.19.2

Should be
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 19, 2)

Fixed with 610b283.