Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 53b2f828 authored by John W. Linville's avatar John W. Linville
Browse files

ath9k: ar9003_eeprom.c:3618 fix variable name typo



   drivers/net/wireless/ath/ath9k/ar9003_eeprom.c: In function 'ar9003_hw_ant_ctrl_apply':
>> drivers/net/wireless/ath/ath9k/ar9003_eeprom.c:3618: warning: 'regval' is used uninitialized in this function

It seems obvious that 'regval' should have been 'value'...

Reported-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent b35c8097
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -3615,8 +3615,8 @@ static void ar9003_hw_ant_ctrl_apply(struct ath_hw *ah, bool is2ghz)


	value = ar9003_hw_ant_ctrl_common_2_get(ah, is2ghz);
	value = ar9003_hw_ant_ctrl_common_2_get(ah, is2ghz);
	if (AR_SREV_9485(ah) && common->bt_ant_diversity) {
	if (AR_SREV_9485(ah) && common->bt_ant_diversity) {
		regval &= ~AR_SWITCH_TABLE_COM2_ALL;
		value &= ~AR_SWITCH_TABLE_COM2_ALL;
		regval |= ah->config.ant_ctrl_comm2g_switch_enable;
		value |= ah->config.ant_ctrl_comm2g_switch_enable;


	}
	}
	REG_RMW_FIELD(ah, AR_PHY_SWITCH_COM_2, AR_SWITCH_TABLE_COM2_ALL, value);
	REG_RMW_FIELD(ah, AR_PHY_SWITCH_COM_2, AR_SWITCH_TABLE_COM2_ALL, value);