For ACPI devices with the enumeration_by_parent flag set, we expect the parent device to enumerate the device after the ACPI scan. This patch does partially the same for devices which are enumerated as PNP devices. We still want PNP scan code to create the per-ACPI device PNP device, but hold off adding the device to allow the parent to do this optionally. Flag acpi_device.driver_data is used as temp store as a reference to the PNP device for the parent. A note on impact of this change: For the hisi_lpc driver, for the UART ACPI node we have a binding like: Device (LPC0.CON0) { Name (_HID, "HISI1031") Name (_CID, "PNP0501") Name (LORS, ResourceTemplate() { QWordIO ( We have the compat and hid string. The ACPI/PNP code matches the compat string first, and creates the PNP device. In doing so, the acpi_device created has physical_node_count member set in acpi_bind_one(). The hisi_lpc driver also creates a platform device serial device for uart, which is the actual uart which we want to use - see hisi_lpc_acpi_add_child(). That function does not check physical_node_count value, but acpi_create_platform_device() does check it. So if we were to move hisi_lpc_acpi_add_child() across to use acpi_create_platform_device(), then the change in this patch is required to not create the PNP binding (so that physical_node_count is not set from PNP probe). Signed-off-by: John Garry <john.garry@xxxxxxxxxx> --- drivers/pnp/pnpacpi/core.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/pnp/pnpacpi/core.c b/drivers/pnp/pnpacpi/core.c index 38928ff7472b..b751381b0429 100644 --- a/drivers/pnp/pnpacpi/core.c +++ b/drivers/pnp/pnpacpi/core.c @@ -272,10 +272,15 @@ static int __init pnpacpi_add_device(struct acpi_device *device) if (!dev->active) pnp_init_resources(dev); - error = pnp_add_device(dev); - if (error) { - put_device(&dev->dev); - return error; + + if (device->flags.enumeration_by_parent) { + device->driver_data = dev; + } else { + error = pnp_add_device(dev); + if (error) { + put_device(&dev->dev); + return error; + } } num++; -- 2.35.3