m920x.h 550 B

1234567891011121314151617181920212223242526
  1. #ifndef _DVB_USB_M920X_H_
  2. #define _DVB_USB_M920X_H_
  3. #define DVB_USB_LOG_PREFIX "m920x"
  4. #include "dvb-usb.h"
  5. #define deb_rc(args...) dprintk(dvb_usb_m920x_debug,0x01,args)
  6. #define M9206_CORE 0x22
  7. #define M9206_RC_STATE 0xff51
  8. #define M9206_RC_KEY 0xff52
  9. #define M9206_RC_INIT1 0xff54
  10. #define M9206_RC_INIT2 0xff55
  11. #define M9206_FW_GO 0xff69
  12. #define M9206_I2C 0x23
  13. #define M9206_FILTER 0x25
  14. #define M9206_FW 0x30
  15. #define M9206_MAX_FILTERS 8
  16. struct m9206_state {
  17. u16 filters[M9206_MAX_FILTERS];
  18. int filtering_enabled;
  19. int rep_count;
  20. };
  21. #endif