usb-char.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2001 Extenex Corporation
  3.  *
  4.  * usb-char.h
  5.  *
  6.  * Character device emulation client for S3C2410 client usb core.
  7.  *
  8.  *
  9.  *
  10.  */
  11. #ifndef _USB_CHAR_H
  12. #define _USB_CHAR_H
  13. #define USBC_MAJOR 10      /* miscellaneous character device */
  14. #define USBC_MINOR 240     /* in the "reserved for local use" range */
  15. #define USBC_MAGIC 0x8E
  16. /* zap everything in receive ring buffer */
  17. #define USBC_IOC_FLUSH_RECEIVER    _IO( USBC_MAGIC, 0x01 )
  18. /* reset transmitter */
  19. #define USBC_IOC_FLUSH_TRANSMITTER _IO( USBC_MAGIC, 0x02 )
  20. /* do both of above */
  21. #define USBC_IOC_FLUSH_ALL         _IO( USBC_MAGIC, 0x03 )
  22. #endif /* _USB_CHAR_H */