From 9de67551192a75952001eeead72b6d5647cff40d Mon Sep 17 00:00:00 2001 From: brektrou <48123110+brektrou@users.noreply.github.com> Date: Mon, 1 Apr 2019 04:17:13 +0700 Subject: [PATCH] Fix build errors on Linux 5.1 Now support Linux versions 4.4.x, 4.9.x, 4.14.x, 4.18.x, 4.19.x, 4.20.x, 5.0.x, 5.1.x --- os_dep/osdep_service.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/os_dep/osdep_service.c b/os_dep/osdep_service.c index 83c7640..c27d3b0 100755 --- a/os_dep/osdep_service.c +++ b/os_dep/osdep_service.c @@ -2201,7 +2201,6 @@ static int isFileReadable(const char *path, u32 *sz) ret = PTR_ERR(fp); else { oldfs = get_fs(); - set_fs(get_ds()); if (1 != readFile(fp, &buf, 1)) ret = PTR_ERR(fp); @@ -2239,7 +2238,6 @@ static int retriveFromFile(const char *path, u8 *buf, u32 sz) RTW_INFO("%s openFile path:%s fp=%p\n", __FUNCTION__, path , fp); oldfs = get_fs(); - set_fs(get_ds()); ret = readFile(fp, buf, sz); set_fs(oldfs); closeFile(fp); @@ -2274,7 +2272,6 @@ static int storeToFile(const char *path, u8 *buf, u32 sz) RTW_INFO("%s openFile path:%s fp=%p\n", __FUNCTION__, path , fp); oldfs = get_fs(); - set_fs(get_ds()); ret = writeFile(fp, buf, sz); set_fs(oldfs); closeFile(fp);