tea6420.h 364 B

1234567891011121314151617
  1. #ifndef __INCLUDED_TEA6420__
  2. #define __INCLUDED_TEA6420__
  3. /* possible addresses */
  4. #define I2C_ADDR_TEA6420_1 0x4c
  5. #define I2C_ADDR_TEA6420_2 0x4d
  6. struct tea6420_multiplex
  7. {
  8. int in; /* input of audio switch */
  9. int out; /* output of audio switch */
  10. int gain; /* gain of connection */
  11. };
  12. #define TEA6420_SWITCH _IOW('v',1,struct tea6420_multiplex)
  13. #endif