blob: 4e7351de7eca496566aec9413e9472e40c2c6472 [file] [log] [blame]
#ifndef _LINUX_MEI_CL_BUS_H
#define _LINUX_MEI_CL_BUS_H
#include <linux/device.h>
#include <linux/uuid.h>
struct mei_cl_device;
struct mei_cl_driver {
struct device_driver driver;
const char *name;
const struct mei_cl_device_id *id_table;
int (*probe)(struct mei_cl_device *dev,
const struct mei_cl_device_id *id);
int (*remove)(struct mei_cl_device *dev);
};
#endif /* _LINUX_MEI_CL_BUS_H */