Lines Matching refs:drv
682 const struct device_driver *drv) in acpi_driver_match_device() argument
684 if (!drv->acpi_match_table) in acpi_driver_match_device()
686 drv->of_match_table); in acpi_driver_match_device()
689 drv->acpi_match_table, drv->of_match_table); in acpi_driver_match_device()
711 driver->drv.name = driver->name; in acpi_bus_register_driver()
712 driver->drv.bus = &acpi_bus_type; in acpi_bus_register_driver()
713 driver->drv.owner = driver->owner; in acpi_bus_register_driver()
715 ret = driver_register(&driver->drv); in acpi_bus_register_driver()
730 driver_unregister(&driver->drv); in acpi_bus_unregister_driver()
739 static int acpi_bus_match(struct device *dev, struct device_driver *drv) in acpi_bus_match() argument
742 struct acpi_driver *acpi_drv = to_acpi_driver(drv); in acpi_bus_match()