blob: c65efd461102ea133138ae9363bf41039f77ff4d [file] [log] [blame]
Russell Kingf0316f92015-12-05 18:41:28 +00001#ifndef LINUX_PLATFORM_DATA_TDA9950_H
2#define LINUX_PLATFORM_DATA_TDA9950_H
3
4struct device;
5
6struct 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