Lines Matching defs:drv
535 * @drv: Pointer to device_driver
539 static int ap_bus_match(struct device *dev, struct device_driver *drv)
541 struct ap_driver *ap_drv = to_ap_drv(drv);
704 ap_dev->drv = ap_drv;
712 ap_dev->drv = NULL;
724 struct ap_driver *ap_drv = ap_dev->drv;
771 struct device_driver *drv = &ap_drv->driver;
773 drv->bus = &ap_bus_type;
774 drv->probe = ap_device_probe;
775 drv->remove = ap_device_remove;
776 drv->owner = owner;
777 drv->name = name;
778 return driver_register(drv);