diff options
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/hw.c')
| -rw-r--r-- | drivers/net/wireless/ath/ath9k/hw.c | 11 | 
1 files changed, 9 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c index 8006ce0c735..8dcefe74f4c 100644 --- a/drivers/net/wireless/ath/ath9k/hw.c +++ b/drivers/net/wireless/ath/ath9k/hw.c @@ -318,6 +318,14 @@ static void ath9k_hw_disablepcie(struct ath_hw *ah)  	REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);  } +static void ath9k_hw_aspm_init(struct ath_hw *ah) +{ +	struct ath_common *common = ath9k_hw_common(ah); + +	if (common->bus_ops->aspm_init) +		common->bus_ops->aspm_init(common); +} +  /* This should work for all families including legacy */  static bool ath9k_hw_chip_test(struct ath_hw *ah)  { @@ -378,7 +386,6 @@ static void ath9k_hw_init_config(struct ath_hw *ah)  	ah->config.additional_swba_backoff = 0;  	ah->config.ack_6mb = 0x0;  	ah->config.cwm_ignore_extcca = 0; -	ah->config.pcie_powersave_enable = 0;  	ah->config.pcie_clock_req = 0;  	ah->config.pcie_waen = 0;  	ah->config.analog_shiftreg = 1; @@ -598,7 +605,7 @@ static int __ath9k_hw_init(struct ath_hw *ah)  	if (ah->is_pciexpress) -		ath9k_hw_configpcipowersave(ah, 0, 0); +		ath9k_hw_aspm_init(ah);  	else  		ath9k_hw_disablepcie(ah);  |