tda9950.h 282 B

12345678910111213141516
  1. #ifndef LINUX_PLATFORM_DATA_TDA9950_H
  2. #define LINUX_PLATFORM_DATA_TDA9950_H
  3. struct device;
  4. struct tda9950_glue {
  5. struct device *parent;
  6. unsigned long irq_flags;
  7. void *data;
  8. int (*init)(void *);
  9. void (*exit)(void *);
  10. int (*open)(void *);
  11. void (*release)(void *);
  12. };
  13. #endif