aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/otus/80211core
diff options
context:
space:
mode:
authorRoel Kluin <roel.kluin@gmail.com>2009-01-17 14:45:29 +0100
committerGreg Kroah-Hartman <gregkh@suse.de>2009-04-03 14:53:29 -0700
commit1472dc9b8848d80d1d8b5a9c4119d17dc9387fcb (patch)
treecab7baa8db1e7ebbbba334fcb76cd4f7893cde0a /drivers/staging/otus/80211core
parentStaging: mimio: depends on INPUT (diff)
downloadlinux-dev-1472dc9b8848d80d1d8b5a9c4119d17dc9387fcb.tar.xz
linux-dev-1472dc9b8848d80d1d8b5a9c4119d17dc9387fcb.zip
Staging: otus: logical/bit and confusion
fix logical/bit and confusion Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Cc: <lrodriguez@atheros.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/otus/80211core')
-rw-r--r--drivers/staging/otus/80211core/cwm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/otus/80211core/cwm.c b/drivers/staging/otus/80211core/cwm.c
index 80f1141bf910..1bd0b1ff12dc 100644
--- a/drivers/staging/otus/80211core/cwm.c
+++ b/drivers/staging/otus/80211core/cwm.c
@@ -75,9 +75,9 @@ void zfCoreCwmBusy(zdev_t* dev, u16_t busy)
if((wd->wlanMode == ZM_MODE_INFRASTRUCTURE || wd->wlanMode == ZM_MODE_PSEUDO ||
wd->wlanMode == ZM_MODE_IBSS)) {
- if (wd->sta.ie.HtCap.HtCapInfo && HTCAP_SupChannelWidthSet != 0 &&
- wd->sta.ie.HtInfo.ChannelInfo && ExtHtCap_RecomTxWidthSet != 0 &&
- (wd->sta.ie.HtInfo.ChannelInfo && ExtHtCap_ExtChannelOffsetAbove) == 1) {
+ if ((wd->sta.ie.HtCap.HtCapInfo & HTCAP_SupChannelWidthSet) &&
+ (wd->sta.ie.HtInfo.ChannelInfo & ExtHtCap_RecomTxWidthSet) &&
+ (wd->sta.ie.HtInfo.ChannelInfo & ExtHtCap_ExtChannelOffsetAbove)) {
wd->cwm.cw_width = CWM_WIDTH40;
}