wext.h 449 B

123456789101112131415161718
  1. /**
  2. * This file contains definition for IOCTL call.
  3. */
  4. #ifndef _LBS_WEXT_H_
  5. #define _LBS_WEXT_H_
  6. void lbs_send_disconnect_notification(struct lbs_private *priv);
  7. void lbs_send_mic_failureevent(struct lbs_private *priv, u32 event);
  8. extern struct iw_handler_def lbs_handler_def;
  9. extern struct iw_handler_def mesh_handler_def;
  10. struct chan_freq_power *lbs_find_cfp_by_band_and_channel(
  11. struct lbs_private *priv,
  12. u8 band,
  13. u16 channel);
  14. #endif