You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
402 B
17 lines
402 B
/**
|
|
* This file contains definition for IOCTL call.
|
|
*/
|
|
#ifndef _LBS_WEXT_H_
|
|
#define _LBS_WEXT_H_
|
|
|
|
void lbs_send_disconnect_notification(struct lbs_private *priv);
|
|
void lbs_send_mic_failureevent(struct lbs_private *priv, u32 event);
|
|
|
|
struct chan_freq_power *lbs_find_cfp_by_band_and_channel(
|
|
struct lbs_private *priv,
|
|
u8 band,
|
|
u16 channel);
|
|
|
|
extern struct iw_handler_def lbs_handler_def;
|
|
|
|
#endif
|
|
|