Lines Matching defs:idxd_drv
10 int __idxd_driver_register(struct idxd_device_driver *idxd_drv, struct module *owner,
13 struct device_driver *drv = &idxd_drv->drv;
15 if (!idxd_drv->type) {
20 drv->name = idxd_drv->name;
29 void idxd_driver_unregister(struct idxd_device_driver *idxd_drv)
31 driver_unregister(&idxd_drv->drv);
38 struct idxd_device_driver *idxd_drv =
43 while (idxd_drv->type[i] != IDXD_DEV_NONE) {
44 if (idxd_dev->type == idxd_drv->type[i])
54 struct idxd_device_driver *idxd_drv =
58 return idxd_drv->probe(idxd_dev);
63 struct idxd_device_driver *idxd_drv =
67 idxd_drv->remove(idxd_dev);