xref: /linux/net/wireless/debugfs.h (revision 3c928320b2254cb6c8d8a7919a1fcf94ca7cae66)
1 #ifndef __CFG80211_DEBUGFS_H
2 #define __CFG80211_DEBUGFS_H
3 
4 #ifdef CONFIG_CFG80211_DEBUGFS
5 void cfg80211_debugfs_drv_add(struct cfg80211_registered_device *drv);
6 void cfg80211_debugfs_drv_del(struct cfg80211_registered_device *drv);
7 #else
8 static inline
9 void cfg80211_debugfs_drv_add(struct cfg80211_registered_device *drv) {}
10 static inline
11 void cfg80211_debugfs_drv_del(struct cfg80211_registered_device *drv) {}
12 #endif
13 
14 #endif /* __CFG80211_DEBUGFS_H */
15