Lines Matching defs:drv
111 static int ide_bus_match(struct device *dev, struct device_driver *drv)
129 struct ide_driver *drv = to_ide_driver(dev->driver);
131 return drv->probe ? drv->probe(drive) : -ENODEV;
137 struct ide_driver *drv = to_ide_driver(dev->driver);
139 if (drv->remove)
140 drv->remove(drive);
148 struct ide_driver *drv = to_ide_driver(dev->driver);
150 if (dev->driver && drv->shutdown)
151 drv->shutdown(drive);