diff options
author | Johannes Berg <johannes.berg@intel.com> | 2023-01-19 16:57:11 +0300 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2023-01-19 16:57:51 +0300 |
commit | 82253ddaff582147cd3fd0e629c4e65d62b1d015 (patch) | |
tree | 1fcffbd3d30f638a629f3080d7cda0d83b0013d8 /net/mac80211/rx.c | |
parent | 3609ff6401c3660e859cda0dd944782ec8300e7e (diff) | |
download | linux-82253ddaff582147cd3fd0e629c4e65d62b1d015.tar.xz |
wifi: mac80211: drop extra 'e' from ieeee80211... name
Somehow an extra 'e' slipped in there without anyone noticing,
drop that from ieeee80211_obss_color_collision_notify().
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net/mac80211/rx.c')
-rw-r--r-- | net/mac80211/rx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c index e17e51abe050..e284897ba5e9 100644 --- a/net/mac80211/rx.c +++ b/net/mac80211/rx.c @@ -3219,9 +3219,9 @@ ieee80211_rx_check_bss_color_collision(struct ieee80211_rx_data *rx) color = le32_get_bits(he_oper->he_oper_params, IEEE80211_HE_OPERATION_BSS_COLOR_MASK); if (color == bss_conf->he_bss_color.color) - ieeee80211_obss_color_collision_notify(&rx->sdata->vif, - BIT_ULL(color), - GFP_ATOMIC); + ieee80211_obss_color_collision_notify(&rx->sdata->vif, + BIT_ULL(color), + GFP_ATOMIC); } } |