mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
75636525fb
This patch revamps the virtual interface handling and makes the code much easier to follow. Fewer functions, better names, less spaghetti code. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
26 lines
739 B
C
26 lines
739 B
C
/* routines exported for debugfs handling */
|
|
|
|
#ifndef __IEEE80211_DEBUGFS_NETDEV_H
|
|
#define __IEEE80211_DEBUGFS_NETDEV_H
|
|
|
|
#ifdef CONFIG_MAC80211_DEBUGFS
|
|
void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata);
|
|
void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata);
|
|
void ieee80211_debugfs_netdev_init(void);
|
|
void ieee80211_debugfs_netdev_exit(void);
|
|
#else
|
|
static inline void ieee80211_debugfs_add_netdev(
|
|
struct ieee80211_sub_if_data *sdata)
|
|
{}
|
|
static inline void ieee80211_debugfs_remove_netdev(
|
|
struct ieee80211_sub_if_data *sdata)
|
|
{}
|
|
static inline void ieee80211_debugfs_netdev_init(void)
|
|
{}
|
|
|
|
static inline void ieee80211_debugfs_netdev_exit(void)
|
|
{}
|
|
#endif
|
|
|
|
#endif /* __IEEE80211_DEBUGFS_NETDEV_H */
|