diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2014-07-30 21:15:42 +0000 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2014-07-30 21:15:42 +0000 |
commit | 83c803086c686aa73663f6c6391a7c2c916d1dd1 (patch) | |
tree | a101ba03c9cc6accf2167ea1861f18984d1954e6 /package/kernel/mac80211/patches/801-fix-5ghz.patch | |
parent | b1df24f00eef530cfa587c49907cb70de7cb5517 (diff) | |
download | upstream-83c803086c686aa73663f6c6391a7c2c916d1dd1.tar.gz upstream-83c803086c686aa73663f6c6391a7c2c916d1dd1.tar.bz2 upstream-83c803086c686aa73663f6c6391a7c2c916d1dd1.zip |
mac80211: b43: update b43 to version master-2014-07-29-1
This add 5GHz support for N-PHY to b43, thanks Rafał Miłecki.
b43_wflush16 was put into an extra function because it is pretty big in asm.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 41900
Diffstat (limited to 'package/kernel/mac80211/patches/801-fix-5ghz.patch')
-rw-r--r-- | package/kernel/mac80211/patches/801-fix-5ghz.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/kernel/mac80211/patches/801-fix-5ghz.patch b/package/kernel/mac80211/patches/801-fix-5ghz.patch new file mode 100644 index 0000000000..91d72a33af --- /dev/null +++ b/package/kernel/mac80211/patches/801-fix-5ghz.patch @@ -0,0 +1,12 @@ +--- a/drivers/net/wireless/b43/phy_n.c ++++ b/drivers/net/wireless/b43/phy_n.c +@@ -6217,6 +6217,9 @@ static void b43_nphy_channel_setup(struc + u16 tmp16; + + if (new_channel->band == IEEE80211_BAND_5GHZ) { ++ /* Switch to 2 GHz for a moment to access B43_PHY_B_BBCFG */ ++ b43_phy_mask(dev, B43_NPHY_BANDCTL, ~B43_NPHY_BANDCTL_5GHZ); ++ + tmp16 = b43_read16(dev, B43_MMIO_PSM_PHY_HDR); + b43_write16(dev, B43_MMIO_PSM_PHY_HDR, tmp16 | 4); + /* Put BPHY in the reset */ |