device_match_acpi_dev
EXPORT_SYMBOL(device_match_acpi_dev);
KUNIT_EXPECT_FALSE(test, device_match_acpi_dev(&pdev->dev, NULL));
return device_match_acpi_dev(dev->parent, data);
int device_match_acpi_dev(struct device *dev, const void *adev);
return bus_find_device(bus, NULL, adev, device_match_acpi_dev);
return class_find_device(class, NULL, adev, device_match_acpi_dev);
return driver_find_device(drv, NULL, adev, device_match_acpi_dev);