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@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Hariprasad Kelam 2019-06-16 08:24:31 +05:30 committed by Greg Kroah-Hartman
parent 289fb19ef7
commit 247c2ad278
1 changed files with 1 additions and 1 deletions

View File

@ -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); */