wext.h 439 B

1234567891011121314151617181920212223
  1. /**
  2. * This file contains definition for IOCTL call.
  3. */
  4. #ifndef _WLAN_WEXT_H_
  5. #define _WLAN_WEXT_H_
  6. /** wlan_ioctl_regrdwr */
  7. struct wlan_ioctl_regrdwr {
  8. /** Which register to access */
  9. u16 whichreg;
  10. /** Read or Write */
  11. u16 action;
  12. u32 offset;
  13. u16 NOB;
  14. u32 value;
  15. };
  16. #define WLAN_MONITOR_OFF 0
  17. extern struct iw_handler_def libertas_handler_def;
  18. extern struct iw_handler_def mesh_handler_def;
  19. #endif /* _WLAN_WEXT_H_ */