diff options
Diffstat (limited to 'include/linux/platform_data')
| -rw-r--r-- | include/linux/platform_data/tda9950.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/platform_data/tda9950.h b/include/linux/platform_data/tda9950.h new file mode 100644 index 000000000000..c65efd461102 --- /dev/null +++ b/include/linux/platform_data/tda9950.h | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | #ifndef LINUX_PLATFORM_DATA_TDA9950_H | ||
| 2 | #define LINUX_PLATFORM_DATA_TDA9950_H | ||
| 3 | |||
| 4 | struct device; | ||
| 5 | |||
| 6 | struct tda9950_glue { | ||
| 7 | struct device *parent; | ||
| 8 | unsigned long irq_flags; | ||
| 9 | void *data; | ||
| 10 | int (*init)(void *); | ||
| 11 | void (*exit)(void *); | ||
| 12 | int (*open)(void *); | ||
| 13 | void (*release)(void *); | ||
| 14 | }; | ||
| 15 | |||
| 16 | #endif | ||
