https://github.com/torvalds/linux
Raw File
Tip revision: aae4e7a8bc44722fe70d58920a36916b1043195e authored by Linus Torvalds on 07 August 2017, 01:44:49 UTC
Linux 4.13-rc4
Tip revision: aae4e7a
debugfs_sta.h
#ifndef __MAC80211_DEBUGFS_STA_H
#define __MAC80211_DEBUGFS_STA_H

#include "sta_info.h"

#ifdef CONFIG_MAC80211_DEBUGFS
void ieee80211_sta_debugfs_add(struct sta_info *sta);
void ieee80211_sta_debugfs_remove(struct sta_info *sta);
#else
static inline void ieee80211_sta_debugfs_add(struct sta_info *sta) {}
static inline void ieee80211_sta_debugfs_remove(struct sta_info *sta) {}
#endif

#endif /* __MAC80211_DEBUGFS_STA_H */
back to top