HE: Fix typo srp -> spr in hostapd configuration parameters
The initial commit used srp instead of spr for the spatial reuse configuration prefix. Signed-off-by: Shashidhar Lakkavalli <slakkavalli@datto.com> Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
parent
b505ef7e96
commit
ad5224dd43
2 changed files with 8 additions and 8 deletions
|
@ -3592,13 +3592,13 @@ static int hostapd_config_fill(struct hostapd_config *conf,
|
|||
} else if (os_strcmp(buf, "he_mu_edca_ac_vo_timer") == 0) {
|
||||
conf->he_mu_edca.he_mu_ac_vo_param[HE_MU_AC_PARAM_TIMER_IDX] =
|
||||
atoi(pos) & 0xff;
|
||||
} else if (os_strcmp(buf, "he_srp_sr_control") == 0) {
|
||||
} else if (os_strcmp(buf, "he_spr_sr_control") == 0) {
|
||||
conf->spr.sr_control = atoi(pos) & 0xff;
|
||||
} else if (os_strcmp(buf, "he_srp_non_srg_obss_pd_max_offset") == 0) {
|
||||
} else if (os_strcmp(buf, "he_spr_non_srg_obss_pd_max_offset") == 0) {
|
||||
conf->spr.non_srg_obss_pd_max_offset = atoi(pos);
|
||||
} else if (os_strcmp(buf, "he_srp_srg_obss_pd_min_offset") == 0) {
|
||||
} else if (os_strcmp(buf, "he_spr_srg_obss_pd_min_offset") == 0) {
|
||||
conf->spr.srg_obss_pd_min_offset = atoi(pos);
|
||||
} else if (os_strcmp(buf, "he_srp_srg_obss_pd_max_offset") == 0) {
|
||||
} else if (os_strcmp(buf, "he_spr_srg_obss_pd_max_offset") == 0) {
|
||||
conf->spr.srg_obss_pd_max_offset = atoi(pos);
|
||||
#endif /* CONFIG_IEEE80211AX */
|
||||
} else if (os_strcmp(buf, "max_listen_interval") == 0) {
|
||||
|
|
|
@ -824,10 +824,10 @@ wmm_ac_vo_acm=0
|
|||
#he_mu_edca_ac_vo_timer=255
|
||||
|
||||
# Spatial Reuse Parameter Set
|
||||
#he_srp_sr_control
|
||||
#he_srp_non_srg_obss_pd_max_offset
|
||||
#he_srp_srg_obss_pd_min_offset
|
||||
#he_srp_srg_obss_pd_max_offset
|
||||
#he_spr_sr_control
|
||||
#he_spr_non_srg_obss_pd_max_offset
|
||||
#he_spr_srg_obss_pd_min_offset
|
||||
#he_spr_srg_obss_pd_max_offset
|
||||
|
||||
##### IEEE 802.1X-2004 related configuration ##################################
|
||||
|
||||
|
|
Loading…
Reference in a new issue