Blame view

net/mac80211/debugfs_sta.h 427 Bytes
e9f207f0f   Jiri Benc   [MAC80211]: Add d...
1
2
  #ifndef __MAC80211_DEBUGFS_STA_H
  #define __MAC80211_DEBUGFS_STA_H
d0709a651   Johannes Berg   mac80211: RCU-ify...
3
  #include "sta_info.h"
e9f207f0f   Jiri Benc   [MAC80211]: Add d...
4
5
6
7
8
9
10
11
12
  #ifdef CONFIG_MAC80211_DEBUGFS
  void ieee80211_sta_debugfs_add(struct sta_info *sta);
  void ieee80211_sta_debugfs_remove(struct sta_info *sta);
  #else
  static inline void ieee80211_sta_debugfs_add(struct sta_info *sta) {}
  static inline void ieee80211_sta_debugfs_remove(struct sta_info *sta) {}
  #endif
  
  #endif /* __MAC80211_DEBUGFS_STA_H */