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