mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 09:36:25 +00:00 
			
		
		
		
	 79c97e97ae
			
		
	
	
		79c97e97ae
		
	
	
	
	
		
			
			We've named the registered devices 'drv' sometimes, thinking of "driver", which is not what it is, it's the internal representation of a wiphy, i.e. a device. Let's clean up the naming once and and use 'rdev' aka 'registered device' everywhere. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			462 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			462 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef __CFG80211_DEBUGFS_H
 | |
| #define __CFG80211_DEBUGFS_H
 | |
| 
 | |
| #ifdef CONFIG_CFG80211_DEBUGFS
 | |
| void cfg80211_debugfs_rdev_add(struct cfg80211_registered_device *rdev);
 | |
| void cfg80211_debugfs_rdev_del(struct cfg80211_registered_device *rdev);
 | |
| #else
 | |
| static inline
 | |
| void cfg80211_debugfs_rdev_add(struct cfg80211_registered_device *rdev) {}
 | |
| static inline
 | |
| void cfg80211_debugfs_rdev_del(struct cfg80211_registered_device *rdev) {}
 | |
| #endif
 | |
| 
 | |
| #endif /* __CFG80211_DEBUGFS_H */
 |