Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 1 | #ifndef __MAC80211_DEBUGFS_KEY_H |
| 2 | #define __MAC80211_DEBUGFS_KEY_H |
| 3 | |
| 4 | #ifdef CONFIG_MAC80211_DEBUGFS |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 5 | void ieee80211_debugfs_key_add(struct ieee80211_key *key); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 6 | void ieee80211_debugfs_key_remove(struct ieee80211_key *key); |
| 7 | void ieee80211_debugfs_key_add_default(struct ieee80211_sub_if_data *sdata); |
| 8 | void ieee80211_debugfs_key_remove_default(struct ieee80211_sub_if_data *sdata); |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 9 | void ieee80211_debugfs_key_add_mgmt_default( |
| 10 | struct ieee80211_sub_if_data *sdata); |
| 11 | void ieee80211_debugfs_key_remove_mgmt_default( |
| 12 | struct ieee80211_sub_if_data *sdata); |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 13 | void ieee80211_debugfs_key_sta_del(struct ieee80211_key *key, |
| 14 | struct sta_info *sta); |
| 15 | #else |
Johannes Berg | 3b96766 | 2008-04-08 17:56:52 +0200 | [diff] [blame] | 16 | static inline void ieee80211_debugfs_key_add(struct ieee80211_key *key) |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 17 | {} |
| 18 | static inline void ieee80211_debugfs_key_remove(struct ieee80211_key *key) |
| 19 | {} |
| 20 | static inline void ieee80211_debugfs_key_add_default( |
| 21 | struct ieee80211_sub_if_data *sdata) |
| 22 | {} |
| 23 | static inline void ieee80211_debugfs_key_remove_default( |
| 24 | struct ieee80211_sub_if_data *sdata) |
| 25 | {} |
Jouni Malinen | 3cfcf6ac | 2009-01-08 13:32:02 +0200 | [diff] [blame] | 26 | static inline void ieee80211_debugfs_key_add_mgmt_default( |
| 27 | struct ieee80211_sub_if_data *sdata) |
| 28 | {} |
| 29 | static inline void ieee80211_debugfs_key_remove_mgmt_default( |
| 30 | struct ieee80211_sub_if_data *sdata) |
| 31 | {} |
Jiri Benc | e9f207f | 2007-05-05 11:46:38 -0700 | [diff] [blame] | 32 | static inline void ieee80211_debugfs_key_sta_del(struct ieee80211_key *key, |
| 33 | struct sta_info *sta) |
| 34 | {} |
| 35 | #endif |
| 36 | |
| 37 | #endif /* __MAC80211_DEBUGFS_KEY_H */ |