2007-02-10 15:25:27 +01:00
|
|
|
/**
|
|
|
|
* This file contains definition for IOCTL call.
|
|
|
|
*/
|
|
|
|
#ifndef _WLAN_WEXT_H_
|
|
|
|
#define _WLAN_WEXT_H_
|
|
|
|
|
|
|
|
/** wlan_ioctl_regrdwr */
|
|
|
|
struct wlan_ioctl_regrdwr {
|
|
|
|
/** Which register to access */
|
|
|
|
u16 whichreg;
|
|
|
|
/** Read or Write */
|
|
|
|
u16 action;
|
|
|
|
u32 offset;
|
|
|
|
u16 NOB;
|
|
|
|
u32 value;
|
|
|
|
};
|
|
|
|
|
2007-08-02 19:16:55 +02:00
|
|
|
#define WLAN_MONITOR_OFF 0
|
2007-06-18 18:10:33 +02:00
|
|
|
|
2007-02-10 15:25:27 +01:00
|
|
|
extern struct iw_handler_def libertas_handler_def;
|
2007-05-26 05:08:34 +02:00
|
|
|
extern struct iw_handler_def mesh_handler_def;
|
2007-02-10 15:25:27 +01:00
|
|
|
|
|
|
|
#endif /* _WLAN_WEXT_H_ */
|