Skip to content
Snippets Groups Projects
Commit 53924941 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

ath5k: disable tx power gain correction probing for hardware that does not need or support it

SVN-Revision: 27324
parent 0d796ee9
No related branches found
No related tags found
No related merge requests found
--- a/drivers/net/wireless/ath/ath5k/phy.c
+++ b/drivers/net/wireless/ath/ath5k/phy.c
@@ -1604,11 +1604,13 @@ int ath5k_hw_phy_calibrate(struct ath5k_
int ret;
if (ah->ah_radio == AR5K_RF5110)
- ret = ath5k_hw_rf5110_calibrate(ah, channel);
- else {
- ret = ath5k_hw_rf511x_iq_calibrate(ah);
+ return ath5k_hw_rf5110_calibrate(ah, channel);
+
+ ret = ath5k_hw_rf511x_iq_calibrate(ah);
+
+ if (ah->ah_radio == AR5K_RF5112 &&
+ (channel->hw_value & (CHANNEL_5GHZ | CHANNEL_OFDM)))
ath5k_hw_request_rfgain_probe(ah);
- }
return ret;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment