1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */ 2*4882a593Smuzhiyun #ifndef __MAC80211_DEBUGFS_STA_H 3*4882a593Smuzhiyun #define __MAC80211_DEBUGFS_STA_H 4*4882a593Smuzhiyun 5*4882a593Smuzhiyun #include "sta_info.h" 6*4882a593Smuzhiyun 7*4882a593Smuzhiyun #ifdef CONFIG_MAC80211_DEBUGFS 8*4882a593Smuzhiyun void ieee80211_sta_debugfs_add(struct sta_info *sta); 9*4882a593Smuzhiyun void ieee80211_sta_debugfs_remove(struct sta_info *sta); 10*4882a593Smuzhiyun #else ieee80211_sta_debugfs_add(struct sta_info * sta)11*4882a593Smuzhiyunstatic inline void ieee80211_sta_debugfs_add(struct sta_info *sta) {} ieee80211_sta_debugfs_remove(struct sta_info * sta)12*4882a593Smuzhiyunstatic inline void ieee80211_sta_debugfs_remove(struct sta_info *sta) {} 13*4882a593Smuzhiyun #endif 14*4882a593Smuzhiyun 15*4882a593Smuzhiyun #endif /* __MAC80211_DEBUGFS_STA_H */ 16