diff options
| author | Dave Airlie <airlied@redhat.com> | 2018-05-21 20:20:45 -0400 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2018-05-21 20:20:45 -0400 |
| commit | 1dd6eb88af7a511b090fa847ed826bf3accf3bce (patch) | |
| tree | 34c8b7c0da62e78d301946ba325b54f2e89a898f /include/linux | |
| parent | 3b064e6f7be75efbb5d8ec5991cd64c8ed09e0dd (diff) | |
| parent | ba52762fb1430b2a2ea8127c1a292c15f13b8dac (diff) | |
Merge branch 'drm-tda998x-devel' of git://git.armlinux.org.uk/~rmk/linux-arm into drm-next
Please incorporate support for TDA998x I2C driver CEC
Signed-off-by: Dave Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180424095456.GA32460@rmk-PC.armlinux.org.uk
Diffstat (limited to 'include/linux')
| -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 | ||
