ath5k: Skip tx power setting on AR5210 for now
authorNick Kossifidis <mickflemm@gmail.com>
Tue, 23 Nov 2010 19:45:21 +0000 (21:45 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 30 Nov 2010 18:53:44 +0000 (13:53 -0500)
 * Don't return -EINVAL when trying to set tx power
 on RF5110 because AR5210 reset will fail. We need to
 add support for RF5110 and AR5210 eeprom in the future
 but for now just skip it.

Signed-off-by: Nick Kossifidis <mickflemm@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath5k/phy.c

index 8790f0a..31239ab 100644 (file)
@@ -3109,6 +3109,9 @@ ath5k_hw_txpower(struct ath5k_hw *ah, struct ieee80211_channel *channel,
 
        /* Initialize TX power table */
        switch (ah->ah_radio) {
+       case AR5K_RF5110:
+               /* TODO */
+               return 0;
        case AR5K_RF5111:
                type = AR5K_PWRTABLE_PWR_TO_PCDAC;
                break;