mirror of https://gitee.com/openkylin/linux.git
ath9k: Fix incorrect noise floor reading for 4k EEPROM
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
0fd06c90c2
commit
668158af48
|
@ -439,7 +439,7 @@ static u32 ath9k_hw_4k_get_eeprom(struct ath_hw *ah,
|
||||||
|
|
||||||
switch (param) {
|
switch (param) {
|
||||||
case EEP_NFTHRESH_2:
|
case EEP_NFTHRESH_2:
|
||||||
return pModal[1].noiseFloorThreshCh[0];
|
return pModal->noiseFloorThreshCh[0];
|
||||||
case AR_EEPROM_MAC(0):
|
case AR_EEPROM_MAC(0):
|
||||||
return pBase->macAddr[0] << 8 | pBase->macAddr[1];
|
return pBase->macAddr[0] << 8 | pBase->macAddr[1];
|
||||||
case AR_EEPROM_MAC(1):
|
case AR_EEPROM_MAC(1):
|
||||||
|
|
Loading…
Reference in New Issue