Samuel Ortiz | e535410 | 2013-03-27 17:29:53 +0200 | [diff] [blame^] | 1 | #ifndef _LINUX_MEI_CL_BUS_H |
2 | #define _LINUX_MEI_CL_BUS_H | ||||
3 | |||||
4 | #include <linux/device.h> | ||||
5 | #include <linux/uuid.h> | ||||
6 | |||||
7 | struct mei_cl_device; | ||||
8 | |||||
9 | struct mei_cl_driver { | ||||
10 | struct device_driver driver; | ||||
11 | const char *name; | ||||
12 | |||||
13 | const struct mei_cl_device_id *id_table; | ||||
14 | |||||
15 | int (*probe)(struct mei_cl_device *dev, | ||||
16 | const struct mei_cl_device_id *id); | ||||
17 | int (*remove)(struct mei_cl_device *dev); | ||||
18 | }; | ||||
19 | |||||
20 | #endif /* _LINUX_MEI_CL_BUS_H */ |