2007-05-05 18:46:38 +00:00
|
|
|
#ifndef __MAC80211_DEBUGFS_H
|
|
|
|
#define __MAC80211_DEBUGFS_H
|
|
|
|
|
2014-04-09 01:28:09 +00:00
|
|
|
#include "ieee80211_i.h"
|
|
|
|
|
2007-05-05 18:46:38 +00:00
|
|
|
#ifdef CONFIG_MAC80211_DEBUGFS
|
2012-09-30 15:12:45 +00:00
|
|
|
void debugfs_hw_add(struct ieee80211_local *local);
|
|
|
|
int __printf(4, 5) mac80211_format_buffer(char __user *userbuf, size_t count,
|
|
|
|
loff_t *ppos, char *fmt, ...);
|
2007-05-05 18:46:38 +00:00
|
|
|
#else
|
|
|
|
static inline void debugfs_hw_add(struct ieee80211_local *local)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __MAC80211_DEBUGFS_H */
|