driver_find_device
EXPORT_SYMBOL_GPL(driver_find_device);
dev = driver_find_device(drv, NULL, guid, __find_bmc_guid);
dev = driver_find_device(drv, NULL, &id, __find_bmc_prod_dev_id);
board->dev = driver_find_device(&fmh_gpib_platform_driver.driver,
companion = driver_find_device(dc->dev->driver, NULL, (const void *)0,
while ((dev = driver_find_device(&arm_cspmu_driver.driver, NULL,
dev = driver_find_device(&chsc_subchannel_driver.drv,
struct device *driver_find_device(const struct device_driver *drv,
return driver_find_device(drv, NULL, name, device_match_name);
return driver_find_device(drv, NULL, np, device_match_of_node);
return driver_find_device(drv, NULL, fwnode, device_match_fwnode);
return driver_find_device(drv, NULL, &devt, device_match_devt);
return driver_find_device(drv, start, NULL, device_match_any);
return driver_find_device(drv, NULL, adev, device_match_acpi_dev);