2007-02-10 22:25:27 +08:00
|
|
|
/**
|
|
|
|
* This file contains definition for IOCTL call.
|
|
|
|
*/
|
2007-11-16 07:05:47 +08:00
|
|
|
#ifndef _LBS_WEXT_H_
|
|
|
|
#define _LBS_WEXT_H_
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2007-11-16 07:05:47 +08:00
|
|
|
/** lbs_ioctl_regrdwr */
|
|
|
|
struct lbs_ioctl_regrdwr {
|
2007-02-10 22:25:27 +08:00
|
|
|
/** Which register to access */
|
|
|
|
u16 whichreg;
|
|
|
|
/** Read or Write */
|
|
|
|
u16 action;
|
|
|
|
u32 offset;
|
|
|
|
u16 NOB;
|
|
|
|
u32 value;
|
|
|
|
};
|
|
|
|
|
2007-11-16 07:05:47 +08:00
|
|
|
#define LBS_MONITOR_OFF 0
|
2007-06-19 00:10:33 +08:00
|
|
|
|
2007-11-16 07:05:47 +08:00
|
|
|
extern struct iw_handler_def lbs_handler_def;
|
2007-05-26 11:08:34 +08:00
|
|
|
extern struct iw_handler_def mesh_handler_def;
|
2007-02-10 22:25:27 +08:00
|
|
|
|
2007-11-16 07:05:47 +08:00
|
|
|
#endif
|