You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
454 B
15 lines
454 B
16 years ago
|
#ifndef __CFG80211_DEBUGFS_H
|
||
|
#define __CFG80211_DEBUGFS_H
|
||
|
|
||
|
#ifdef CONFIG_CFG80211_DEBUGFS
|
||
|
void cfg80211_debugfs_drv_add(struct cfg80211_registered_device *drv);
|
||
|
void cfg80211_debugfs_drv_del(struct cfg80211_registered_device *drv);
|
||
|
#else
|
||
|
static inline
|
||
|
void cfg80211_debugfs_drv_add(struct cfg80211_registered_device *drv) {}
|
||
|
static inline
|
||
|
void cfg80211_debugfs_drv_del(struct cfg80211_registered_device *drv) {}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __CFG80211_DEBUGFS_H */
|