mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-01 04:53:09 -04:00
staging: rtl8723bs: fix issue "Using comparison to true is error prone"
this patch fixes below issue reported by checkpatch CHECK: Using comparison to true is error prone + if (res == true) Signed-off-by: Hariprasad Kelam <hariprasad.kelam@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
9254695963
commit
045e1ee01d
@@ -231,7 +231,7 @@ int _rtw_xmit_entry(_pkt *pkt, _nic_hdl pnetdev)
|
||||
&& padapter->registrypriv.wifi_spec == 0) {
|
||||
if (pxmitpriv->free_xmitframe_cnt > (NR_XMITFRAME/4)) {
|
||||
res = rtw_mlcst2unicst(padapter, pkt);
|
||||
if (res == true)
|
||||
if (res)
|
||||
goto exit;
|
||||
} else {
|
||||
/* DBG_871X("Stop M2U(%d, %d)! ", pxmitpriv->free_xmitframe_cnt, pxmitpriv->free_xmitbuf_cnt); */
|
||||
|
||||
Reference in New Issue
Block a user