diff options
author | Tobin C. Harding <me@tobin.cc> | 2017-03-21 13:37:11 +1100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-21 08:56:07 +0100 |
commit | 1e765f318824b2f182dedb5e74e05b9f132e07ca (patch) | |
tree | b33b4a08c6948c404ed7cadcc5e7593b607ad83f | |
parent | c133b9bd8ff18323f57859c5add3be9e872224c3 (diff) |
staging: ks7010: remove zero comparison
Comparison, equal to zero, is redundant
'if (foo == 0)' is equal to 'if (!foo)'
Typical kernel coding style is to use the shorter form.
Remove unnecessary zero comparison.
Signed-off-by: Tobin C. Harding <me@tobin.cc>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/ks7010/ks_wlan_net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/ks7010/ks_wlan_net.c b/drivers/staging/ks7010/ks_wlan_net.c index d96eed6c8e58..7d4c7f3dd8c5 100644 --- a/drivers/staging/ks7010/ks_wlan_net.c +++ b/drivers/staging/ks7010/ks_wlan_net.c @@ -279,7 +279,7 @@ static int ks_wlan_set_essid(struct net_device *dev, /* for SLEEP MODE */ /* Check if we asked for `any' */ - if (dwrq->flags == 0) { + if (!dwrq->flags) { /* Just send an empty SSID list */ memset(priv->reg.ssid.body, 0, sizeof(priv->reg.ssid.body)); priv->reg.ssid.size = 0; @@ -1531,7 +1531,7 @@ static int ks_wlan_get_scan(struct net_device *dev, return -EAGAIN; } - if (priv->aplist.size == 0) { + if (!priv->aplist.size) { /* Client error, no scan results... * The caller need to restart the scan. */ |