[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20190616025430.GA12034@hari-Inspiron-1545>
Date: Sun, 16 Jun 2019 08:24:31 +0530
From: Hariprasad Kelam <hariprasad.kelam@...il.com>
To: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Hariprasad Kelam <hariprasad.kelam@...il.com>,
Josenivaldo Benito Jr <jrbenito@...ito.qsl.br>,
Larry Finger <Larry.Finger@...inger.net>,
Himadri Pandya <himadri18.07@...il.com>,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org
Subject: [Patch v2 2/2] staging: rtl8723bs: hal: fix Using comparison to
false is error prone
fix below issue reported by checkpatch
CHECK: Using comparison to false is error prone
Signed-off-by: Hariprasad Kelam <hariprasad.kelam@...il.com>
---
changes in v2: break the patch for specific change
----
---
drivers/staging/rtl8723bs/hal/rtl8723bs_recv.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtl8723bs/hal/rtl8723bs_recv.c b/drivers/staging/rtl8723bs/hal/rtl8723bs_recv.c
index 07bee19..e23b39a 100644
--- a/drivers/staging/rtl8723bs/hal/rtl8723bs_recv.c
+++ b/drivers/staging/rtl8723bs/hal/rtl8723bs_recv.c
@@ -175,7 +175,7 @@ static void rtl8723bs_c2h_packet_handler(struct adapter *padapter,
res = rtw_c2h_packet_wk_cmd(padapter, tmp, length);
- if (res == false)
+ if (!res)
kfree(tmp);
/* DBG_871X("-%s res(%d)\n", __func__, res); */
--
2.7.4
Powered by blists - more mailing lists