mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-14 13:39:10 +00:00
mac80211: suppress unused variable warning without lockdep
When lockdep isn't compiled, a local variable isn't used (it's only in a macro argument), annotate it to suppress the compiler warning. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
This commit is contained in:
parent
97dc94f1d9
commit
1d4cc30c86
@ -66,7 +66,7 @@ static bool ieee80211_can_create_new_chanctx(struct ieee80211_local *local)
|
|||||||
static struct ieee80211_chanctx *
|
static struct ieee80211_chanctx *
|
||||||
ieee80211_vif_get_chanctx(struct ieee80211_sub_if_data *sdata)
|
ieee80211_vif_get_chanctx(struct ieee80211_sub_if_data *sdata)
|
||||||
{
|
{
|
||||||
struct ieee80211_local *local = sdata->local;
|
struct ieee80211_local *local __maybe_unused = sdata->local;
|
||||||
struct ieee80211_chanctx_conf *conf;
|
struct ieee80211_chanctx_conf *conf;
|
||||||
|
|
||||||
conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
|
conf = rcu_dereference_protected(sdata->vif.chanctx_conf,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user