]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
HE: Remove vht_ prefix from acs_adjust_vht_center_freq()
authorJohn Crispin <john@phrozen.org>
Mon, 20 May 2019 07:55:07 +0000 (09:55 +0200)
committerJouni Malinen <j@w1.fi>
Mon, 27 May 2019 13:30:05 +0000 (16:30 +0300)
This is used for both VHT and HE, so remove the misleading prefix.

Signed-off-by: Shashidhar Lakkavalli <slakkavalli@datto.com>
Signed-off-by: John Crispin <john@phrozen.org>
src/ap/acs.c

index 3682dcd949aea70dbf1eecc5700f5a56a8701108..fec2625d6a922166d8b9800b8333e716157e2f9c 100644 (file)
@@ -607,7 +607,7 @@ acs_find_ideal_chan(struct hostapd_iface *iface)
 
        bw = num_chan_to_bw(n_chans);
 
-       /* TODO: VHT80+80. Update acs_adjust_vht_center_freq() too. */
+       /* TODO: VHT80+80. Update acs_adjust_center_freq() too. */
 
        wpa_printf(MSG_DEBUG,
                   "ACS: Survey analysis for selected bandwidth %d MHz", bw);
@@ -783,7 +783,7 @@ acs_find_ideal_chan(struct hostapd_iface *iface)
 }
 
 
-static void acs_adjust_vht_center_freq(struct hostapd_iface *iface)
+static void acs_adjust_center_freq(struct hostapd_iface *iface)
 {
        int offset;
 
@@ -863,8 +863,8 @@ static void acs_study(struct hostapd_iface *iface)
 
        iface->conf->channel = ideal_chan->chan;
 
-       if (iface->conf->ieee80211ac)
-               acs_adjust_vht_center_freq(iface);
+       if (iface->conf->ieee80211ac || iface->conf->ieee80211ax)
+               acs_adjust_center_freq(iface);
 
        err = 0;
 fail: