Commit 3ed0fac3 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by John W. Linville

b43: N-PHY: fix one bit off in parsing RF Ctrl Override arguments

Signed-off-by: default avatarRafał Miłecki <zajec5@gmail.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 723bae7e
...@@ -1031,7 +1031,7 @@ static void b43_nphy_rf_control_override(struct b43_wldev *dev, u16 field, ...@@ -1031,7 +1031,7 @@ static void b43_nphy_rf_control_override(struct b43_wldev *dev, u16 field,
u8 index = fls(field); u8 index = fls(field);
u8 addr, en_addr, val_addr; u8 addr, en_addr, val_addr;
/* we expect only one bit set */ /* we expect only one bit set */
B43_WARN_ON(field & (~(1 << index))); B43_WARN_ON(field & (~(1 << (index - 1))));
if (dev->phy.rev >= 3) { if (dev->phy.rev >= 3) {
const struct nphy_rf_control_override_rev3 *rf_ctrl; const struct nphy_rf_control_override_rev3 *rf_ctrl;
......
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