lineage_kernel_xcoverpro/include/linux/sec_class.h

14 lines
366 B
C
Executable File

#ifndef SEC_CLASS_H
#define SEC_CLASS_H
#ifdef CONFIG_DRV_SAMSUNG
extern struct device *sec_device_create(void *drvdata, const char *fmt);
extern struct device *sec_device_find(const char *name);
extern void sec_device_destroy(dev_t devt);
#else
#define sec_device_create(a, b) (-1)
#define sec_device_destroy(a) do { } while (0)
#endif
#endif /* SEC_CLASS_H */