From cbc570a769e063703274d40147db836fddd3aae1 Mon Sep 17 00:00:00 2001 From: Guilherme Tadashi Maeoka Date: Sat, 9 Mar 2019 15:30:43 -0300 Subject: [PATCH] staging: rtl8723bs: os_dep: Fix assignment in if condition Fix an assignment in if condition. Signed-off-by: Guilherme Tadashi Maeoka Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8723bs/os_dep/osdep_service.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723bs/os_dep/osdep_service.c b/drivers/staging/rtl8723bs/os_dep/osdep_service.c index 4378827243f0..1e289c45d26a 100644 --- a/drivers/staging/rtl8723bs/os_dep/osdep_service.c +++ b/drivers/staging/rtl8723bs/os_dep/osdep_service.c @@ -155,7 +155,9 @@ static int retriveFromFile(char *path, u8 *buf, u32 sz) struct file *fp; if (path && buf) { - if (0 == (ret =openFile(&fp, path, O_RDONLY, 0))) { + ret = openFile(&fp, path, O_RDONLY, 0); + + if (ret == 0) { DBG_871X("%s openFile path:%s fp =%p\n", __func__, path , fp); ret =readFile(fp, buf, sz); -- 2.39.5