diff options
author | Johannes Berg <johannes.berg@intel.com> | 2016-10-17 08:04:07 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2016-10-17 08:04:07 +0200 |
commit | f83ace3b1ed4c3032c963f9f1a46985fc797633c (patch) | |
tree | dd57c31ae335501dbf8aba7ad6cd020e9bef6978 /net | |
parent | 1609d18de655e243d2db0f8fa21a3830ff0ab89f (diff) |
nl80211: ifdef WoWLAN related policies
To avoid unused variable warnings when CONFIG_PM isn't set,
add the appropriate ifdef to the policies that are only used
for WoWLAN, which can only be invoked when CONFIG_PM is set.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/wireless/nl80211.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 65c0a1771fd5..e48b9c3988d3 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -435,6 +435,7 @@ nl80211_key_default_policy[NUM_NL80211_KEY_DEFAULT_TYPES] = { [NL80211_KEY_DEFAULT_TYPE_MULTICAST] = { .type = NLA_FLAG }, }; +#ifdef CONFIG_PM /* policy for WoWLAN attributes */ static const struct nla_policy nl80211_wowlan_policy[NUM_NL80211_WOWLAN_TRIG] = { @@ -468,6 +469,7 @@ nl80211_wowlan_tcp_policy[NUM_NL80211_WOWLAN_TCP] = { [NL80211_WOWLAN_TCP_WAKE_PAYLOAD] = { .len = 1 }, [NL80211_WOWLAN_TCP_WAKE_MASK] = { .len = 1 }, }; +#endif /* CONFIG_PM */ /* policy for coalesce rule attributes */ static const struct nla_policy |