projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f679056
)
b43: Fix a typo in the sync_stx routine
author
Gábor Stefanik
<netrolller.3d@gmail.com>
Mon, 10 Aug 2009 22:54:26 +0000
(
00:54
+0200)
committer
John W. Linville
<linville@tuxdriver.com>
Fri, 14 Aug 2009 13:14:02 +0000
(09:14 -0400)
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>
drivers/net/wireless/b43/phy_lp.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/b43/phy_lp.c
b/drivers/net/wireless/b43/phy_lp.c
index 6b1989490aec4b0d85f3f7be9d2b9015105c7df9..95e15e6692ac8f9904c2ce8d95980c8424004ee2 100644
(file)
--- 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)
tmp >>= e->rf_shift;
tmp <<= e->phy_shift;
b43_phy_maskset(dev, B43_PHY_OFDM(0xF2 + e->phy_offset),
-
e->mask << e->phy_shift
, tmp);
+
~(e->mask << e->phy_shift)
, tmp);
}
}