From: Gábor Stefanik Date: Sun, 16 Aug 2009 13:32:40 +0000 (+0200) Subject: b43: LP-PHY: Fix a spec error in the B2062 channel switch routine X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=055114a38804947554065194d50ded4bc7d7c4c6;p=mv-sheeva.git b43: LP-PHY: Fix a spec error in the B2062 channel switch routine The channel switch routine had a whole instruction missing. Add it. Signed-off-by: Gábor Stefanik Signed-off-by: John W. Linville --- diff --git a/drivers/net/wireless/b43/phy_lp.c b/drivers/net/wireless/b43/phy_lp.c index 85af82a7f94..cb6c18d2cdb 100644 --- a/drivers/net/wireless/b43/phy_lp.c +++ b/drivers/net/wireless/b43/phy_lp.c @@ -1922,6 +1922,10 @@ static int lpphy_b2062_tune(struct b43_wldev *dev, tmp5 = tmp7 * 0x100; tmp6 = tmp5 / tmp4; tmp7 = tmp5 % tmp4; + b43_radio_write(dev, B2062_S_RFPLL_CTL27, tmp6); + tmp5 = tmp7 * 0x100; + tmp6 = tmp5 / tmp4; + tmp7 = tmp5 % tmp4; b43_radio_write(dev, B2062_S_RFPLL_CTL28, tmp6); tmp5 = tmp7 * 0x100; tmp6 = tmp5 / tmp4;