mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 01:22:07 +00:00
ath5k: shifting the wrong variable for AR5K_AR5210
In the original code we shift "AR5K_PHY(256) >> 28" which is zero but the intent was to shift the return value of ath5k_hw_reg_read() like we do a couple lines later. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
2e8c5e56b3
commit
4a0732d1f9
@ -110,7 +110,7 @@ ath5k_hw_radio_revision(struct ath5k_hw *ah, enum ieee80211_band band)
|
|||||||
ath5k_hw_reg_write(ah, 0x00010000, AR5K_PHY(0x20));
|
ath5k_hw_reg_write(ah, 0x00010000, AR5K_PHY(0x20));
|
||||||
|
|
||||||
if (ah->ah_version == AR5K_AR5210) {
|
if (ah->ah_version == AR5K_AR5210) {
|
||||||
srev = ath5k_hw_reg_read(ah, AR5K_PHY(256) >> 28) & 0xf;
|
srev = (ath5k_hw_reg_read(ah, AR5K_PHY(256)) >> 28) & 0xf;
|
||||||
ret = (u16)ath5k_hw_bitswap(srev, 4) + 1;
|
ret = (u16)ath5k_hw_bitswap(srev, 4) + 1;
|
||||||
} else {
|
} else {
|
||||||
srev = (ath5k_hw_reg_read(ah, AR5K_PHY(0x100)) >> 24) & 0xff;
|
srev = (ath5k_hw_reg_read(ah, AR5K_PHY(0x100)) >> 24) & 0xff;
|
||||||
|
Loading…
Reference in New Issue
Block a user