mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 08:26:29 +00:00 
			
		
		
		
	 e9f207f0ff
			
		
	
	
		e9f207f0ff
		
	
	
	
	
		
			
			Export various mac80211 internal variables through debugfs. Signed-off-by: Jiri Benc <jbenc@suse.cz> Signed-off-by: John W. Linville <linville@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
		
			
				
	
	
		
			31 lines
		
	
	
		
			944 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			944 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* routines exported for debugfs handling */
 | |
| 
 | |
| #ifndef __IEEE80211_DEBUGFS_NETDEV_H
 | |
| #define __IEEE80211_DEBUGFS_NETDEV_H
 | |
| 
 | |
| #ifdef CONFIG_MAC80211_DEBUGFS
 | |
| void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata);
 | |
| void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata);
 | |
| void ieee80211_debugfs_change_if_type(struct ieee80211_sub_if_data *sdata,
 | |
| 				     int oldtype);
 | |
| void ieee80211_debugfs_netdev_init(void);
 | |
| void ieee80211_debugfs_netdev_exit(void);
 | |
| #else
 | |
| static inline void ieee80211_debugfs_add_netdev(
 | |
| 	struct ieee80211_sub_if_data *sdata)
 | |
| {}
 | |
| static inline void ieee80211_debugfs_remove_netdev(
 | |
| 	struct ieee80211_sub_if_data *sdata)
 | |
| {}
 | |
| static inline void ieee80211_debugfs_change_if_type(
 | |
| 	struct ieee80211_sub_if_data *sdata, int oldtype)
 | |
| {}
 | |
| static inline void ieee80211_debugfs_netdev_init(void)
 | |
| {}
 | |
| 
 | |
| static inline void ieee80211_debugfs_netdev_exit(void)
 | |
| {}
 | |
| #endif
 | |
| 
 | |
| #endif /* __IEEE80211_DEBUGFS_NETDEV_H */
 |