kernel_samsung_a53x/include/linux/platform_data/tda9950.h
2024-06-15 16:02:09 -03:00

16 lines
282 B
C
Executable file

#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