diff options
| author | 2018-05-22 10:20:45 +1000 | |
|---|---|---|
| committer | 2018-05-22 10:20:45 +1000 | |
| commit | 1dd6eb88af7a511b090fa847ed826bf3accf3bce (patch) | |
| tree | 34c8b7c0da62e78d301946ba325b54f2e89a898f /include/linux/platform_data | |
| parent | Merge branch 'linux-4.18' of git://github.com/skeggsb/linux into drm-next (diff) | |
| parent | dt-bindings: tda998x: add the calibration gpio (diff) | |
| download | linux-dev-1dd6eb88af7a511b090fa847ed826bf3accf3bce.tar.xz linux-dev-1dd6eb88af7a511b090fa847ed826bf3accf3bce.zip | |
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 |
