mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
5e8e8b5759
Signed-off-by: Holger Schurig <holgerschurig@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
18 lines
402 B
C
18 lines
402 B
C
/**
|
|
* 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
|