repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
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
|