aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTeodora Baluta <[email protected]>2013-10-25 12:00:16 +0300
committerGreg Kroah-Hartman <[email protected]>2013-10-28 14:34:42 -0700
commit0fe249a5c80e473d6a0a1ba39457af1a6cb30448 (patch)
treed821ca10e25c4eb5b17348c2ca990f3567d584d2
parentf26842926d203285517069acff3d2d5eedb39556 (diff)
staging: rtl8187se: bool tests don't need comparisons
This patch fixes the following coccinelle warning: drivers/staging/rtl8187se/r8180_core.c:2217:5-40: WARNING: Comparison to bool Signed-off-by: Teodora Baluta <[email protected]> Reviewed-by: Rusty Russell <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/rtl8187se/r8180_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8187se/r8180_core.c b/drivers/staging/rtl8187se/r8180_core.c
index eb9822215c15..8d767f35ce89 100644
--- a/drivers/staging/rtl8187se/r8180_core.c
+++ b/drivers/staging/rtl8187se/r8180_core.c
@@ -2214,7 +2214,7 @@ static void watch_dog_adaptive(unsigned long data)
TxPwrTracking87SE((struct net_device *)data);
/* Perform DIG immediately. */
- if (CheckDig((struct net_device *)data) == true)
+ if (CheckDig((struct net_device *)data))
queue_work(priv->ieee80211->wq, (void *)&priv->ieee80211->hw_dig_wq);
rtl8180_watch_dog((struct net_device *)data);