swh:1:snp:3c665ee4f67729f27f2e40193ab88e7298cf0fef
Raw File
Tip revision: 326ba5010a5429a5a528b268b36a5900d4ab0eba authored by Linus Torvalds on 28 August 2009, 00:59:04 UTC
Linux 2.6.31-rc8
Tip revision: 326ba50
debugfs.h
#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 */
back to top