1
0
mirror of https://github.com/abperiasamy/rtl8812AU_8821AU_linux.git synced 2025-10-19 09:01:10 +02:00

Allow building on 5.0 (#288)

* Removed TYPE parameter in access_ok

Kernel 5.0 removed the TYPE parameter for access_ok, therefore the make will fail. This just literally removes 13 characters from Line 603.

* Allow older kernel versions with 5.0
This commit is contained in:
Nicholas George
2019-03-21 03:38:50 -05:00
committed by Harshavardhana
parent 754aa52e97
commit 33d8e02cd1

View File

@@ -600,7 +600,11 @@ int rtw_android_priv_cmd(struct net_device *net, struct ifreq *ifr, int cmd)
goto exit;
}
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,0,0)
if (!access_ok(priv_cmd.buf, priv_cmd.total_len)) {
#else
if (!access_ok(VERIFY_READ, priv_cmd.buf, priv_cmd.total_len)) {
#endif
DBG_871X("%s: failed to access memory\n", __FUNCTION__);
ret = -EFAULT;
goto exit;