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

Commit 165af96d authored by Rajkumar Manoharan's avatar Rajkumar Manoharan Committed by John W. Linville
Browse files

ath9k_hw: Corrected xpabiaslevel register settings for AR9340

parent 73f74367
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -3442,11 +3442,10 @@ static void ar9003_hw_xpa_bias_level_apply(struct ath_hw *ah, bool is2ghz)
{
	int bias = ar9003_hw_xpa_bias_level_get(ah, is2ghz);

	if (AR_SREV_9485(ah))
	if (AR_SREV_9485(ah) || AR_SREV_9340(ah))
		REG_RMW_FIELD(ah, AR_CH0_TOP2, AR_CH0_TOP2_XPABIASLVL, bias);
	else {
		REG_RMW_FIELD(ah, AR_CH0_TOP, AR_CH0_TOP_XPABIASLVL, bias);
		if (!AR_SREV_9340(ah)) {
		REG_RMW_FIELD(ah, AR_CH0_THERM,
				AR_CH0_THERM_XPABIASLVL_MSB,
				bias >> 2);
@@ -3454,7 +3453,6 @@ static void ar9003_hw_xpa_bias_level_apply(struct ath_hw *ah, bool is2ghz)
				AR_CH0_THERM_XPASHORT2GND, 1);
	}
}
}

static u32 ar9003_hw_ant_ctrl_common_get(struct ath_hw *ah, bool is2ghz)
{