| 1 | --- a/drivers/net/wireless/ath/ath9k/init.c |
| 2 | +++ b/drivers/net/wireless/ath/ath9k/init.c |
| 3 | @@ -659,7 +659,11 @@ void ath9k_set_hw_capab(struct ath_softc |
| 4 | hw->sta_data_size = sizeof(struct ath_node); |
| 5 | hw->vif_data_size = sizeof(struct ath_vif); |
| 6 | |
| 7 | +#ifdef ATH9K_USE_MINSTREL |
| 8 | + hw->rate_control_algorithm = "minstrel_ht"; |
| 9 | +#else |
| 10 | hw->rate_control_algorithm = "ath9k_rate_control"; |
| 11 | +#endif |
| 12 | |
| 13 | if (test_bit(ATH9K_MODE_11G, sc->sc_ah->caps.wireless_modes)) |
| 14 | hw->wiphy->bands[IEEE80211_BAND_2GHZ] = |
| 15 | |