Commit e05eac37 authored by Roel Kluin's avatar Roel Kluin Committed by John W. Linville

p54: misplaced parentheses

Only FIF_FCSFAIL is set due to parentheses
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent c3d72b96
...@@ -2212,8 +2212,8 @@ static void p54_configure_filter(struct ieee80211_hw *dev, ...@@ -2212,8 +2212,8 @@ static void p54_configure_filter(struct ieee80211_hw *dev,
*total_flags &= FIF_PROMISC_IN_BSS | *total_flags &= FIF_PROMISC_IN_BSS |
FIF_OTHER_BSS | FIF_OTHER_BSS |
(*total_flags & FIF_PROMISC_IN_BSS) ? (*total_flags & FIF_PROMISC_IN_BSS ?
FIF_FCSFAIL : 0; FIF_FCSFAIL : 0);
priv->filter_flags = *total_flags; priv->filter_flags = *total_flags;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment