summaryrefslogtreecommitdiff
path: root/package/libertas/src/wext.h
diff options
context:
space:
mode:
Diffstat (limited to 'package/libertas/src/wext.h')
-rw-r--r--package/libertas/src/wext.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/package/libertas/src/wext.h b/package/libertas/src/wext.h
new file mode 100644
index 0000000..a563d9a
--- /dev/null
+++ b/package/libertas/src/wext.h
@@ -0,0 +1,23 @@
+/**
+ * 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