|
|
@@ -876,15 +876,6 @@ static const struct ieee80211_iface_combination if_comb[] = {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
-#ifdef CONFIG_ATH9K_WOW
|
|
|
-static const struct wiphy_wowlan_support ath9k_wowlan_support = {
|
|
|
- .flags = WIPHY_WOWLAN_MAGIC_PKT | WIPHY_WOWLAN_DISCONNECT,
|
|
|
- .n_patterns = MAX_NUM_USER_PATTERN,
|
|
|
- .pattern_min_len = 1,
|
|
|
- .pattern_max_len = MAX_PATTERN_SIZE,
|
|
|
-};
|
|
|
-#endif
|
|
|
-
|
|
|
void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
|
|
|
{
|
|
|
struct ath_hw *ah = sc->sc_ah;
|
|
|
@@ -934,16 +925,6 @@ void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
|
|
|
hw->wiphy->flags |= WIPHY_FLAG_SUPPORTS_5_10_MHZ;
|
|
|
hw->wiphy->flags |= WIPHY_FLAG_HAS_CHANNEL_SWITCH;
|
|
|
|
|
|
-#ifdef CONFIG_ATH9K_WOW
|
|
|
- if ((ah->caps.hw_caps & ATH9K_HW_WOW_DEVICE_CAPABLE) &&
|
|
|
- (sc->driver_data & ATH9K_PCI_WOW) &&
|
|
|
- device_can_wakeup(sc->dev))
|
|
|
- hw->wiphy->wowlan = &ath9k_wowlan_support;
|
|
|
-
|
|
|
- atomic_set(&sc->wow_sleep_proc_intr, -1);
|
|
|
- atomic_set(&sc->wow_got_bmiss_intr, -1);
|
|
|
-#endif
|
|
|
-
|
|
|
hw->queues = 4;
|
|
|
hw->max_rates = 4;
|
|
|
hw->channel_change_time = 5000;
|
|
|
@@ -969,6 +950,7 @@ void ath9k_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw)
|
|
|
hw->wiphy->bands[IEEE80211_BAND_5GHZ] =
|
|
|
&sc->sbands[IEEE80211_BAND_5GHZ];
|
|
|
|
|
|
+ ath9k_init_wow(hw);
|
|
|
ath9k_reload_chainmask_settings(sc);
|
|
|
|
|
|
SET_IEEE80211_PERM_ADDR(hw, common->macaddr);
|