Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef __LBS_CFG80211_H__
0003 #define __LBS_CFG80211_H__
0004 
0005 struct device;
0006 struct lbs_private;
0007 struct regulatory_request;
0008 struct wiphy;
0009 
0010 struct wireless_dev *lbs_cfg_alloc(struct device *dev);
0011 int lbs_cfg_register(struct lbs_private *priv);
0012 void lbs_cfg_free(struct lbs_private *priv);
0013 
0014 void lbs_send_disconnect_notification(struct lbs_private *priv,
0015                       bool locally_generated);
0016 void lbs_send_mic_failureevent(struct lbs_private *priv, u32 event);
0017 
0018 void lbs_scan_done(struct lbs_private *priv);
0019 void lbs_scan_deinit(struct lbs_private *priv);
0020 int lbs_disconnect(struct lbs_private *priv, u16 reason);
0021 
0022 #endif