From d53b283012a58acf2c3a119cd11083ff4d8f2ff4 Mon Sep 17 00:00:00 2001 From: Rin Cat Date: Mon, 6 May 2019 12:09:07 -0400 Subject: [PATCH] fix space/tab --- os_dep/osdep_service.c | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/os_dep/osdep_service.c b/os_dep/osdep_service.c index cc4501d..04d511b 100644 --- a/os_dep/osdep_service.c +++ b/os_dep/osdep_service.c @@ -2187,11 +2187,11 @@ static int isFileReadable(const char *path, u32 *sz) ret = PTR_ERR(fp); else { oldfs = get_fs(); - #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 1, 0)) - set_fs(KERNEL_DS); - #else - set_fs(get_ds()); - #endif + #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 1, 0)) + set_fs(KERNEL_DS); + #else + set_fs(get_ds()); + #endif if (1 != readFile(fp, &buf, 1)) @@ -2230,11 +2230,12 @@ 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(); - #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 1, 0)) - set_fs(KERNEL_DS); - #else - set_fs(get_ds()); - #endif + #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 1, 0)) + set_fs(KERNEL_DS); + #else + set_fs(get_ds()); + #endif + ret = readFile(fp, buf, sz); set_fs(oldfs); closeFile(fp); @@ -2269,11 +2270,11 @@ 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(); - #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 1, 0)) - set_fs(KERNEL_DS); - #else - set_fs(get_ds()); - #endif + #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 1, 0)) + set_fs(KERNEL_DS); + #else + set_fs(get_ds()); + #endif ret = writeFile(fp, buf, sz); set_fs(oldfs); closeFile(fp);