debugfs.h 454 B

1234567891011121314
  1. #ifndef __CFG80211_DEBUGFS_H
  2. #define __CFG80211_DEBUGFS_H
  3. #ifdef CONFIG_CFG80211_DEBUGFS
  4. void cfg80211_debugfs_drv_add(struct cfg80211_registered_device *drv);
  5. void cfg80211_debugfs_drv_del(struct cfg80211_registered_device *drv);
  6. #else
  7. static inline
  8. void cfg80211_debugfs_drv_add(struct cfg80211_registered_device *drv) {}
  9. static inline
  10. void cfg80211_debugfs_drv_del(struct cfg80211_registered_device *drv) {}
  11. #endif
  12. #endif /* __CFG80211_DEBUGFS_H */