mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
17 lines
282 B
C
17 lines
282 B
C
|
#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
|