debugfs.h 462 B

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