mei_cl_bus.h 411 B

1234567891011121314151617181920
  1. #ifndef _LINUX_MEI_CL_BUS_H
  2. #define _LINUX_MEI_CL_BUS_H
  3. #include <linux/device.h>
  4. #include <linux/uuid.h>
  5. struct mei_cl_device;
  6. struct mei_cl_driver {
  7. struct device_driver driver;
  8. const char *name;
  9. const struct mei_cl_device_id *id_table;
  10. int (*probe)(struct mei_cl_device *dev,
  11. const struct mei_cl_device_id *id);
  12. int (*remove)(struct mei_cl_device *dev);
  13. };
  14. #endif /* _LINUX_MEI_CL_BUS_H */