Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __MAC80211_DEBUGFS_H
0003 #define __MAC80211_DEBUGFS_H
0004 
0005 #include "ieee80211_i.h"
0006 
0007 #ifdef CONFIG_MAC80211_DEBUGFS
0008 void debugfs_hw_add(struct ieee80211_local *local);
0009 int __printf(4, 5) mac80211_format_buffer(char __user *userbuf, size_t count,
0010                       loff_t *ppos, char *fmt, ...);
0011 #else
0012 static inline void debugfs_hw_add(struct ieee80211_local *local)
0013 {
0014 }
0015 #endif
0016 
0017 #endif /* __MAC80211_DEBUGFS_H */