cfg.h 779 B

123456789101112131415161718192021222324252627
  1. #ifndef __LBS_CFG80211_H__
  2. #define __LBS_CFG80211_H__
  3. struct device;
  4. struct lbs_private;
  5. struct regulatory_request;
  6. struct wiphy;
  7. struct wireless_dev *lbs_cfg_alloc(struct device *dev);
  8. int lbs_cfg_register(struct lbs_private *priv);
  9. void lbs_cfg_free(struct lbs_private *priv);
  10. int lbs_reg_notifier(struct wiphy *wiphy,
  11. struct regulatory_request *request);
  12. /* All of those are TODOs: */
  13. #define lbs_cmd_802_11_rssi(priv, cmdptr) (0)
  14. #define lbs_ret_802_11_rssi(priv, resp) (0)
  15. #define lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action) (0)
  16. #define lbs_ret_802_11_bcn_ctrl(priv, resp) (0)
  17. void lbs_send_disconnect_notification(struct lbs_private *priv);
  18. void lbs_send_mic_failureevent(struct lbs_private *priv, u32 event);
  19. void lbs_scan_deinit(struct lbs_private *priv);
  20. #endif