diff options
author | Nick Kossifidis <mickflemm@gmail.com> | 2008-02-28 14:50:50 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-03-07 16:02:58 -0500 |
commit | 903b474efabab6a4ce697063c367afd8e2ad83f3 (patch) | |
tree | d7a7ab944a519122fcb958c01ed42cd2d8d91096 /drivers/net/wireless/ath5k/phy.c | |
parent | 0af2256319959aaca95959a493ed2282edaaae3e (diff) |
ath5k: more RF2413 stuff
* Add AR5K_RF2413 to radio check during hw_reset so it doesn't complain
* Write ah_phy_spending value we set during attach instead of checking
each time for radio revision
* Skip txpower setup for RF2413 because it can't transmit with it
(weird thing is that RF5413 has no problem with it).
Changes-licensed-under: ISC
Signed-off-by: Nick Kossifidis <mickflemm@gmail.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@winlab.rutgers.edu>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath5k/phy.c')
-rw-r--r-- | drivers/net/wireless/ath5k/phy.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath5k/phy.c b/drivers/net/wireless/ath5k/phy.c index f108b08ff4af..40efd4d3b54c 100644 --- a/drivers/net/wireless/ath5k/phy.c +++ b/drivers/net/wireless/ath5k/phy.c | |||
@@ -2178,6 +2178,15 @@ ath5k_hw_txpower(struct ath5k_hw *ah, struct ieee80211_channel *channel, | |||
2178 | return -EINVAL; | 2178 | return -EINVAL; |
2179 | } | 2179 | } |
2180 | 2180 | ||
2181 | /* | ||
2182 | * RF2413 for some reason can't | ||
2183 | * transmit anything if we call | ||
2184 | * this funtion, so we skip it | ||
2185 | * until we fix txpower. | ||
2186 | */ | ||
2187 | if (ah->ah_radio == AR5K_RF2413) | ||
2188 | return 0; | ||
2189 | |||
2181 | /* Reset TX power values */ | 2190 | /* Reset TX power values */ |
2182 | memset(&ah->ah_txpower, 0, sizeof(ah->ah_txpower)); | 2191 | memset(&ah->ah_txpower, 0, sizeof(ah->ah_txpower)); |
2183 | ah->ah_txpower.txp_tpc = tpc; | 2192 | ah->ah_txpower.txp_tpc = tpc; |