Commit 49f09554 authored by John Oldman's avatar John Oldman Committed by Greg Kroah-Hartman

staging: rtl8192e: Using comparison to true is error prone

fix below issue reported by checkpatch.pl:

CHECK: Using comparison to true is error prone
CHECK: Using comparison to false is error prone
Signed-off-by: default avatarJohn Oldman <john.oldman@polehill.co.uk>
Link: https://lore.kernel.org/r/20200520163719.14463-1-john.oldman@polehill.co.ukSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8da04760
...@@ -514,7 +514,7 @@ static void rtw_dev_remove(struct sdio_func *func) ...@@ -514,7 +514,7 @@ static void rtw_dev_remove(struct sdio_func *func)
rtw_unregister_netdevs(dvobj); rtw_unregister_netdevs(dvobj);
if (padapter->bSurpriseRemoved == false) { if (!padapter->bSurpriseRemoved) {
int err; int err;
/* test surprise remove */ /* test surprise remove */
...@@ -554,12 +554,12 @@ static int rtw_sdio_suspend(struct device *dev) ...@@ -554,12 +554,12 @@ static int rtw_sdio_suspend(struct device *dev)
struct adapter *padapter = psdpriv->if1; struct adapter *padapter = psdpriv->if1;
struct debug_priv *pdbgpriv = &psdpriv->drv_dbg; struct debug_priv *pdbgpriv = &psdpriv->drv_dbg;
if (padapter->bDriverStopped == true) { if (padapter->bDriverStopped) {
DBG_871X("%s bDriverStopped = %d\n", __func__, padapter->bDriverStopped); DBG_871X("%s bDriverStopped = %d\n", __func__, padapter->bDriverStopped);
return 0; return 0;
} }
if (pwrpriv->bInSuspend == true) { if (pwrpriv->bInSuspend) {
DBG_871X("%s bInSuspend = %d\n", __func__, pwrpriv->bInSuspend); DBG_871X("%s bInSuspend = %d\n", __func__, pwrpriv->bInSuspend);
pdbgpriv->dbg_suspend_error_cnt++; pdbgpriv->dbg_suspend_error_cnt++;
return 0; return 0;
...@@ -574,7 +574,7 @@ static int rtw_resume_process(struct adapter *padapter) ...@@ -574,7 +574,7 @@ static int rtw_resume_process(struct adapter *padapter)
struct dvobj_priv *psdpriv = padapter->dvobj; struct dvobj_priv *psdpriv = padapter->dvobj;
struct debug_priv *pdbgpriv = &psdpriv->drv_dbg; struct debug_priv *pdbgpriv = &psdpriv->drv_dbg;
if (pwrpriv->bInSuspend == false) { if (!pwrpriv->bInSuspend) {
pdbgpriv->dbg_resume_error_cnt++; pdbgpriv->dbg_resume_error_cnt++;
DBG_871X("%s bInSuspend = %d\n", __func__, pwrpriv->bInSuspend); DBG_871X("%s bInSuspend = %d\n", __func__, pwrpriv->bInSuspend);
return -1; return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment