diff options
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c index 391def99314c..9fbcbddea165 100644 --- a/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c +++ b/drivers/net/wireless/ath/ath9k/ar9003_eeprom.c | |||
@@ -3538,13 +3538,13 @@ static void ar9003_hw_xpa_bias_level_apply(struct ath_hw *ah, bool is2ghz) | |||
3538 | static u16 ar9003_switch_com_spdt_get(struct ath_hw *ah, bool is_2ghz) | 3538 | static u16 ar9003_switch_com_spdt_get(struct ath_hw *ah, bool is_2ghz) |
3539 | { | 3539 | { |
3540 | struct ar9300_eeprom *eep = &ah->eeprom.ar9300_eep; | 3540 | struct ar9300_eeprom *eep = &ah->eeprom.ar9300_eep; |
3541 | __le32 val; | 3541 | __le16 val; |
3542 | 3542 | ||
3543 | if (is_2ghz) | 3543 | if (is_2ghz) |
3544 | val = eep->modalHeader2G.switchcomspdt; | 3544 | val = eep->modalHeader2G.switchcomspdt; |
3545 | else | 3545 | else |
3546 | val = eep->modalHeader5G.switchcomspdt; | 3546 | val = eep->modalHeader5G.switchcomspdt; |
3547 | return le32_to_cpu(val); | 3547 | return le16_to_cpu(val); |
3548 | } | 3548 | } |
3549 | 3549 | ||
3550 | 3550 | ||