summaryrefslogtreecommitdiff
path: root/drivers/net
diff options
context:
space:
mode:
authorRafał Miłecki <zajec5@gmail.com>2013-04-02 15:57:26 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-04-25 21:19:55 -0700
commitd6b8c333ca71eba35911fc4460ca37568ccfa9c0 (patch)
treeda26dfb9cb9e1e4b672dd22bea47f4486bf6d75b /drivers/net
parentf4ec6e0f475dd23157042a150c8f3dcfa528a8ca (diff)
downloadlinux-3.10-d6b8c333ca71eba35911fc4460ca37568ccfa9c0.tar.gz
linux-3.10-d6b8c333ca71eba35911fc4460ca37568ccfa9c0.tar.bz2
linux-3.10-d6b8c333ca71eba35911fc4460ca37568ccfa9c0.zip
ssb: implement spurious tone avoidance
commit 46fc4c909339f5a84d1679045297d9d2fb596987 upstream. And make use of it in b43. This fixes a regression introduced with 49d55cef5b1925a5c1efb6aaddaa40fc7c693335 b43: N-PHY: implement spurious tone avoidance This commit made BCM4322 use only MCS 0 on channel 13, which of course resulted in performance drop (down to 0.7Mb/s). Reported-by: Stefan Brüns <stefan.bruens@rwth-aachen.de> Signed-off-by: Rafał Miłecki <zajec5@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/wireless/b43/phy_n.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c
index 6be2f73cce7..4ce3e1f036c 100644
--- a/drivers/net/wireless/b43/phy_n.c
+++ b/drivers/net/wireless/b43/phy_n.c
@@ -4582,7 +4582,8 @@ static void b43_nphy_pmu_spur_avoid(struct b43_wldev *dev, bool avoid)
#endif
#ifdef CONFIG_B43_SSB
case B43_BUS_SSB:
- /* FIXME */
+ ssb_pmu_spuravoid_pllupdate(&dev->dev->sdev->bus->chipco,
+ avoid);
break;
#endif
}