mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 17:01:53 +02:00
7a4bdab850
* adding libertas * config issue * quiet mode for bootloader git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9768 3c298f89-4303-0410-b956-a3cf2f4a3e73
24 lines
406 B
C
24 lines
406 B
C
/**
|
|
* This file contains definition for IOCTL call.
|
|
*/
|
|
#ifndef _LBS_WEXT_H_
|
|
#define _LBS_WEXT_H_
|
|
|
|
/** lbs_ioctl_regrdwr */
|
|
struct lbs_ioctl_regrdwr {
|
|
/** Which register to access */
|
|
u16 whichreg;
|
|
/** Read or Write */
|
|
u16 action;
|
|
u32 offset;
|
|
u16 NOB;
|
|
u32 value;
|
|
};
|
|
|
|
#define LBS_MONITOR_OFF 0
|
|
|
|
extern struct iw_handler_def lbs_handler_def;
|
|
extern struct iw_handler_def mesh_handler_def;
|
|
|
|
#endif
|