2009-10-06 08:31:54 -06:00
|
|
|
#ifndef __LBS_CFG80211_H__
|
|
|
|
#define __LBS_CFG80211_H__
|
|
|
|
|
2010-06-14 10:31:26 -06:00
|
|
|
struct device;
|
|
|
|
struct lbs_private;
|
2010-06-05 00:20:42 -06:00
|
|
|
struct regulatory_request;
|
|
|
|
struct wiphy;
|
2009-10-06 08:31:54 -06:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2010-06-05 00:20:42 -06:00
|
|
|
int lbs_reg_notifier(struct wiphy *wiphy,
|
|
|
|
struct regulatory_request *request);
|
|
|
|
|
2010-06-14 10:31:26 -06:00
|
|
|
void lbs_send_disconnect_notification(struct lbs_private *priv);
|
|
|
|
void lbs_send_mic_failureevent(struct lbs_private *priv, u32 event);
|
|
|
|
|
2011-10-26 11:19:26 -06:00
|
|
|
void lbs_scan_done(struct lbs_private *priv);
|
2010-06-14 10:31:26 -06:00
|
|
|
void lbs_scan_deinit(struct lbs_private *priv);
|
2011-08-01 09:43:13 -06:00
|
|
|
int lbs_disconnect(struct lbs_private *priv, u16 reason);
|
2009-10-06 08:31:54 -06:00
|
|
|
|
|
|
|
#endif
|