Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __MAC80211_DEBUGFS_STA_H
0003 #define __MAC80211_DEBUGFS_STA_H
0004 
0005 #include "sta_info.h"
0006 
0007 #ifdef CONFIG_MAC80211_DEBUGFS
0008 void ieee80211_sta_debugfs_add(struct sta_info *sta);
0009 void ieee80211_sta_debugfs_remove(struct sta_info *sta);
0010 #else
0011 static inline void ieee80211_sta_debugfs_add(struct sta_info *sta) {}
0012 static inline void ieee80211_sta_debugfs_remove(struct sta_info *sta) {}
0013 #endif
0014 
0015 #endif /* __MAC80211_DEBUGFS_STA_H */