wl1271: bugfix: use bitwise-AND instead of logical-AND
typo - while looking for specific bits we should do a bitwise-AND instead of logical-AND. Signed-off-by: Eliad Peller <eliad@wizery.com> Acked-by: Luciano Coelho <luciano.coelho@nokia.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
58be4607d2
commit
9ee82d5410
1 changed files with 2 additions and 2 deletions
|
@ -1634,7 +1634,7 @@ static void wl1271_op_bss_info_changed(struct ieee80211_hw *hw,
|
|||
if (ret < 0)
|
||||
goto out;
|
||||
|
||||
if ((changed && BSS_CHANGED_BEACON_INT) &&
|
||||
if ((changed & BSS_CHANGED_BEACON_INT) &&
|
||||
(wl->bss_type == BSS_TYPE_IBSS)) {
|
||||
wl1271_debug(DEBUG_ADHOC, "ad-hoc beacon interval updated: %d",
|
||||
bss_conf->beacon_int);
|
||||
|
@ -1643,7 +1643,7 @@ static void wl1271_op_bss_info_changed(struct ieee80211_hw *hw,
|
|||
do_join = true;
|
||||
}
|
||||
|
||||
if ((changed && BSS_CHANGED_BEACON) &&
|
||||
if ((changed & BSS_CHANGED_BEACON) &&
|
||||
(wl->bss_type == BSS_TYPE_IBSS)) {
|
||||
struct sk_buff *beacon = ieee80211_beacon_get(hw, vif);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue