Blame view

net/mac80211/debugfs_sta.h 466 Bytes
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
e9f207f0f   Jiri Benc   [MAC80211]: Add d...
2
3
  #ifndef __MAC80211_DEBUGFS_STA_H
  #define __MAC80211_DEBUGFS_STA_H
d0709a651   Johannes Berg   mac80211: RCU-ify...
4
  #include "sta_info.h"
e9f207f0f   Jiri Benc   [MAC80211]: Add d...
5
6
7
8
9
10
11
12
13
  #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 */