blob: 1cd7b8bff56c8c8187a0c44b7e6a5374ade49418 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Jiri Bence9f207f2007-05-05 11:46:38 -07002#ifndef __MAC80211_DEBUGFS_KEY_H
3#define __MAC80211_DEBUGFS_KEY_H
4
5#ifdef CONFIG_MAC80211_DEBUGFS
Johannes Berg3b967662008-04-08 17:56:52 +02006void ieee80211_debugfs_key_add(struct ieee80211_key *key);
Jiri Bence9f207f2007-05-05 11:46:38 -07007void ieee80211_debugfs_key_remove(struct ieee80211_key *key);
Johannes Bergf7e01042010-12-09 19:49:02 +01008void ieee80211_debugfs_key_update_default(struct ieee80211_sub_if_data *sdata);
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +02009void ieee80211_debugfs_key_add_mgmt_default(
10 struct ieee80211_sub_if_data *sdata);
11void ieee80211_debugfs_key_remove_mgmt_default(
12 struct ieee80211_sub_if_data *sdata);
Jiri Bence9f207f2007-05-05 11:46:38 -070013void ieee80211_debugfs_key_sta_del(struct ieee80211_key *key,
14 struct sta_info *sta);
15#else
Johannes Berg3b967662008-04-08 17:56:52 +020016static inline void ieee80211_debugfs_key_add(struct ieee80211_key *key)
Jiri Bence9f207f2007-05-05 11:46:38 -070017{}
18static inline void ieee80211_debugfs_key_remove(struct ieee80211_key *key)
19{}
Johannes Bergf7e01042010-12-09 19:49:02 +010020static inline void ieee80211_debugfs_key_update_default(
Jiri Bence9f207f2007-05-05 11:46:38 -070021 struct ieee80211_sub_if_data *sdata)
22{}
Jouni Malinen3cfcf6ac2009-01-08 13:32:02 +020023static inline void ieee80211_debugfs_key_add_mgmt_default(
24 struct ieee80211_sub_if_data *sdata)
25{}
26static inline void ieee80211_debugfs_key_remove_mgmt_default(
27 struct ieee80211_sub_if_data *sdata)
28{}
Jiri Bence9f207f2007-05-05 11:46:38 -070029static inline void ieee80211_debugfs_key_sta_del(struct ieee80211_key *key,
30 struct sta_info *sta)
31{}
32#endif
33
34#endif /* __MAC80211_DEBUGFS_KEY_H */