clear below issues reported by checkpatch.pl:

CHECK: Using comparison to false is error prone

Signed-off-by: John Oldman <john.old...@polehill.co.uk>
---
 drivers/staging/rtl8192u/r8192U_dm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/rtl8192u/r8192U_dm.c 
b/drivers/staging/rtl8192u/r8192U_dm.c
index c23e43b095d9..6b301acb584e 100644
--- a/drivers/staging/rtl8192u/r8192U_dm.c
+++ b/drivers/staging/rtl8192u/r8192U_dm.c
@@ -2240,7 +2240,7 @@ static void dm_ctstoself(struct net_device *dev)
        unsigned long                                           curTxOkCnt = 0;
        unsigned long                                           curRxOkCnt = 0;

-       if (priv->ieee80211->bCTSToSelfEnable != true) {
+       if (!priv->ieee80211->bCTSToSelfEnable) {
                pHTInfo->IOTAction &= ~HT_IOT_ACT_FORCED_CTS2SELF;
                return;
        }
@@ -2944,7 +2944,7 @@ static void dm_dynamic_txpower(struct net_device *dev)
        unsigned int txhipower_threshold = 0;
        unsigned int txlowpower_threshold = 0;

-       if (priv->ieee80211->bdynamic_txpower_enable != true) {
+       if (!priv->ieee80211->bdynamic_txpower_enable) {
                priv->bDynamicTxHighPower = false;
                priv->bDynamicTxLowPower = false;
                return;
--
2.17.1

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to