diff options
author | Dave Airlie <airlied@redhat.com> | 2018-05-22 03:20:45 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2018-05-22 03:20:45 +0300 |
commit | 1dd6eb88af7a511b090fa847ed826bf3accf3bce (patch) | |
tree | 34c8b7c0da62e78d301946ba325b54f2e89a898f /include/linux/platform_data | |
parent | 3b064e6f7be75efbb5d8ec5991cd64c8ed09e0dd (diff) | |
parent | ba52762fb1430b2a2ea8127c1a292c15f13b8dac (diff) | |
download | linux-1dd6eb88af7a511b090fa847ed826bf3accf3bce.tar.xz |
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/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 @@ +#ifndef LINUX_PLATFORM_DATA_TDA9950_H +#define LINUX_PLATFORM_DATA_TDA9950_H + +struct device; + +struct tda9950_glue { + struct device *parent; + unsigned long irq_flags; + void *data; + int (*init)(void *); + void (*exit)(void *); + int (*open)(void *); + void (*release)(void *); +}; + +#endif |