From 39b9d059cd98510e7626032c5610c6849a380955 Mon Sep 17 00:00:00 2001 From: John Crispin Date: Mon, 20 May 2019 09:55:07 +0200 Subject: [PATCH] HE: Remove vht_ prefix from acs_adjust_vht_center_freq() This is used for both VHT and HE, so remove the misleading prefix. Signed-off-by: Shashidhar Lakkavalli Signed-off-by: John Crispin --- src/ap/acs.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ap/acs.c b/src/ap/acs.c index 3682dcd94..fec2625d6 100644 --- a/src/ap/acs.c +++ b/src/ap/acs.c @@ -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: