aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192u/r8192U_wx.c
diff options
context:
space:
mode:
authorKsenija Stanojevic <ksenija.stanojevic@gmail.com>2015-03-12 17:29:35 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-16 16:20:26 +0100
commit956ff8213b4abecb7ac9bb6330b99b2847ebd318 (patch)
tree51bd8f2246e3cd956deb68f4b2a06222c70014c0 /drivers/staging/rtl8192u/r8192U_wx.c
parentStaging: rts5208: Use module_pci_driver (diff)
downloadlinux-dev-956ff8213b4abecb7ac9bb6330b99b2847ebd318.tar.xz
linux-dev-956ff8213b4abecb7ac9bb6330b99b2847ebd318.zip
Staging: rtl8192u: Simplify if condition
This patch removes macro true from if condition since variable priv->ieee80211->LinkDetectInfo.bBusyTraffic is already of type bool. Signed-off-by: Ksenija Stanojevic <ksenija.stanojevic@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192u/r8192U_wx.c')
-rw-r--r--drivers/staging/rtl8192u/r8192U_wx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8192u/r8192U_wx.c b/drivers/staging/rtl8192u/r8192U_wx.c
index b5a26f34b864..83597051a448 100644
--- a/drivers/staging/rtl8192u/r8192U_wx.c
+++ b/drivers/staging/rtl8192u/r8192U_wx.c
@@ -335,7 +335,7 @@ static int r8192_wx_set_scan(struct net_device *dev, struct iw_request_info *a,
if (!priv->up)
return -ENETDOWN;
- if (priv->ieee80211->LinkDetectInfo.bBusyTraffic == true)
+ if (priv->ieee80211->LinkDetectInfo.bBusyTraffic)
return -EAGAIN;
if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
struct iw_scan_req *req = (struct iw_scan_req *)b;