Add (kernel_read) support for kernel >=4.14

This commit is contained in:
kimocoder
2021-05-04 14:13:45 +02:00
parent 712784a028
commit a2aa633e9c
+4
View File
@@ -4577,7 +4577,11 @@ int rtw_dev_nlo_info_set(struct pno_nlo_info *nlo_info, pno_ssid_t *ssid,
source = rtw_zmalloc(2048);
if (source != NULL) {
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 14, 0))
len = kernel_read(fp, source, len, &pos);
#else
len = vfs_read(fp, source, len, &pos);
#endif
rtw_parse_cipher_list(nlo_info, source);
rtw_mfree(source, 2048);
}