diff options
author | Gábor Stefanik <netrolller.3d@gmail.com> | 2009-08-16 09:32:40 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-08-20 11:35:56 -0400 |
commit | 055114a38804947554065194d50ded4bc7d7c4c6 (patch) | |
tree | d59a1fe01c9285c0b2551df0aa79c8638c01b2f4 | |
parent | 0ff6ce7b36199f67f709c750e9a2a66659a4babe (diff) |
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 <netrolller.3d@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/b43/phy_lp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/b43/phy_lp.c b/drivers/net/wireless/b43/phy_lp.c index 85af82a7f949..cb6c18d2cdbd 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, | |||
1922 | tmp5 = tmp7 * 0x100; | 1922 | tmp5 = tmp7 * 0x100; |
1923 | tmp6 = tmp5 / tmp4; | 1923 | tmp6 = tmp5 / tmp4; |
1924 | tmp7 = tmp5 % tmp4; | 1924 | tmp7 = tmp5 % tmp4; |
1925 | b43_radio_write(dev, B2062_S_RFPLL_CTL27, tmp6); | ||
1926 | tmp5 = tmp7 * 0x100; | ||
1927 | tmp6 = tmp5 / tmp4; | ||
1928 | tmp7 = tmp5 % tmp4; | ||
1925 | b43_radio_write(dev, B2062_S_RFPLL_CTL28, tmp6); | 1929 | b43_radio_write(dev, B2062_S_RFPLL_CTL28, tmp6); |
1926 | tmp5 = tmp7 * 0x100; | 1930 | tmp5 = tmp7 * 0x100; |
1927 | tmp6 = tmp5 / tmp4; | 1931 | tmp6 = tmp5 / tmp4; |