Blame view

kernel/linux-imx6_3.14.28/net/mac80211/debugfs_sta.h 427 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  #ifndef __MAC80211_DEBUGFS_STA_H
  #define __MAC80211_DEBUGFS_STA_H
  
  #include "sta_info.h"
  
  #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 */