mirror of
https://github.com/chinawrj/rtl8812au
synced 2024-11-13 01:22:30 +00:00
Update for >= 4.0.0
This commit is contained in:
parent
e2ed84fe68
commit
78f2dd43c4
@ -357,10 +357,14 @@ int rtw_android_cmdstr_to_num(char *cmdstr)
|
|||||||
{
|
{
|
||||||
int cmd_num;
|
int cmd_num;
|
||||||
for (cmd_num = 0 ; cmd_num < ANDROID_WIFI_CMD_MAX; cmd_num++)
|
for (cmd_num = 0 ; cmd_num < ANDROID_WIFI_CMD_MAX; cmd_num++)
|
||||||
if (0 == strnicmp(cmdstr , android_wifi_cmd_str[cmd_num], strlen(android_wifi_cmd_str[cmd_num])))
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 0, 0))
|
||||||
break;
|
if(0 == strncasecmp(cmdstr , android_wifi_cmd_str[cmd_num], strlen(android_wifi_cmd_str[cmd_num])) )
|
||||||
|
#else
|
||||||
|
if(0 == strnicmp(cmdstr , android_wifi_cmd_str[cmd_num], strlen(android_wifi_cmd_str[cmd_num])) )
|
||||||
|
#endif
|
||||||
|
break;
|
||||||
|
|
||||||
return cmd_num;
|
return cmd_num;
|
||||||
}
|
}
|
||||||
|
|
||||||
int rtw_android_get_rssi(struct net_device *net, char *command, int total_len)
|
int rtw_android_get_rssi(struct net_device *net, char *command, int total_len)
|
||||||
|
Loading…
Reference in New Issue
Block a user