aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath9k/ar9003_phy.c
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2011-06-21 11:23:33 +0200
committerJohn W. Linville <linville@tuxdriver.com>2011-06-22 16:09:52 -0400
commitdbb204e39fec2dc4800f19eae321ad7e1b95f2fa (patch)
treec18f6502a57e5c55e8bac304e7fe7b13f8e42643 /drivers/net/wireless/ath/ath9k/ar9003_phy.c
parentath9k: read spur frequency information from eeprom for AR9330 (diff)
downloadlinux-dev-dbb204e39fec2dc4800f19eae321ad7e1b95f2fa.tar.xz
linux-dev-dbb204e39fec2dc4800f19eae321ad7e1b95f2fa.zip
ath9k: fix channel frequency calculation for AR9340
A multiplication is missing from the current formula. Cc: Vasanthakumar Thiagarajan <vasanth@atheros.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ar9003_phy.c')
-rw-r--r--drivers/net/wireless/ath/ath9k/ar9003_phy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_phy.c b/drivers/net/wireless/ath/ath9k/ar9003_phy.c
index 2df72cbaf55c..1194eeb69633 100644
--- a/drivers/net/wireless/ath/ath9k/ar9003_phy.c
+++ b/drivers/net/wireless/ath/ath9k/ar9003_phy.c
@@ -104,7 +104,7 @@ static int ar9003_hw_set_channel(struct ath_hw *ah, struct ath9k_channel *chan)
u32 chan_frac;
channelSel = (freq * 2) / 75;
- chan_frac = ((freq % 75) * 0x20000) / 75;
+ chan_frac = (((freq * 2) % 75) * 0x20000) / 75;
channelSel = (channelSel << 17) | chan_frac;
} else {
channelSel = CHANSEL_5G(freq);