mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 06:18:54 +00:00 
			
		
		
		
	 d6541c7448
			
		
	
	
		d6541c7448
		
	
	
	
	
		
			
			For now; it's a pretty easy command to hook up and whenever OLPC figures out how they want the userspace interface to look (ie, not iwpriv commands) we can easily add it back in. Since the cfg80211 conversion it wasn't working anyway. Signed-off-by: Dan Williams <dcbw@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			555 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			555 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef __LBS_CFG80211_H__
 | |
| #define __LBS_CFG80211_H__
 | |
| 
 | |
| struct device;
 | |
| struct lbs_private;
 | |
| struct regulatory_request;
 | |
| struct wiphy;
 | |
| 
 | |
| struct wireless_dev *lbs_cfg_alloc(struct device *dev);
 | |
| int lbs_cfg_register(struct lbs_private *priv);
 | |
| void lbs_cfg_free(struct lbs_private *priv);
 | |
| 
 | |
| int lbs_reg_notifier(struct wiphy *wiphy,
 | |
| 		struct regulatory_request *request);
 | |
| 
 | |
| void lbs_send_disconnect_notification(struct lbs_private *priv);
 | |
| void lbs_send_mic_failureevent(struct lbs_private *priv, u32 event);
 | |
| 
 | |
| void lbs_scan_deinit(struct lbs_private *priv);
 | |
| 
 | |
| #endif
 |