aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/b43
diff options
context:
space:
mode:
authorGábor Stefanik <netrolller.3d@gmail.com>2009-08-10 18:54:26 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-08-14 09:14:02 -0400
commitd44517f235c5baa943fc8cac7e56bd291ffc077e (patch)
tree75f16624e1270cb5c64a2dbee8bc3795643cb465 /drivers/net/wireless/b43
parentf679056b2fdd4e9b7c8eb42ba447cd9646236305 (diff)
b43: Fix a typo in the sync_stx routine
I completely missed the "one's complement" instruction from the specs. Signed-off-by: Gábor Stefanik <netrolller.3d@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/b43')
-rw-r--r--drivers/net/wireless/b43/phy_lp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/b43/phy_lp.c b/drivers/net/wireless/b43/phy_lp.c
index 6b1989490aec..95e15e6692ac 100644
--- a/drivers/net/wireless/b43/phy_lp.c
+++ b/drivers/net/wireless/b43/phy_lp.c
@@ -497,7 +497,7 @@ static void lpphy_sync_stx(struct b43_wldev *dev)
497 tmp >>= e->rf_shift; 497 tmp >>= e->rf_shift;
498 tmp <<= e->phy_shift; 498 tmp <<= e->phy_shift;
499 b43_phy_maskset(dev, B43_PHY_OFDM(0xF2 + e->phy_offset), 499 b43_phy_maskset(dev, B43_PHY_OFDM(0xF2 + e->phy_offset),
500 e->mask << e->phy_shift, tmp); 500 ~(e->mask << e->phy_shift), tmp);
501 } 501 }
502} 502}
503 503