From: Johannes Berg Date: Wed, 5 Oct 2022 12:08:41 +0000 (+0200) Subject: wifi: mac80211: fix ifdef symbol name X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=daf8163bd9caead6791fe28fdc997c7986d99fae;p=users%2Fjedix%2Flinux-maple.git wifi: mac80211: fix ifdef symbol name [ Upstream commit 9d13aff91ecd3f077b432df35291c945bde585be ] This should of course be CONFIG_, not CPTCFG_, which is an artifact from working with backports. Fixes: 9dd1953846c7 ("wifi: nl80211/mac80211: clarify link ID in control port TX") Signed-off-by: Johannes Berg Signed-off-by: Sasha Levin --- diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index 874f2a4d831d..cc10ee1ff8e9 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c @@ -2973,7 +2973,7 @@ static struct sk_buff *ieee80211_build_hdr(struct ieee80211_sub_if_data *sdata, if (pre_conf_link_id != link_id && link_id != IEEE80211_LINK_UNSPECIFIED) { -#ifdef CPTCFG_MAC80211_VERBOSE_DEBUG +#ifdef CONFIG_MAC80211_VERBOSE_DEBUG net_info_ratelimited("%s: dropped frame to %pM with bad link ID request (%d vs. %d)\n", sdata->name, hdr.addr1, pre_conf_link_id, link_id);