pci_decode: add acpi device

Use it as point to defer clients (e.g. ACPI-CA) until platform driver could
claim all resources.

Issue #4679
This commit is contained in:
Alexander Boettcher 2022-12-12 15:09:50 +01:00 committed by Christian Helmuth
parent 25eac6b9e6
commit dca71dbad9

View File

@ -303,6 +303,14 @@ void Main::parse_acpi_device_info(Xml_generator & gen)
gen.attribute("size", 4U);
});
});
/*
* ACPI device
*/
gen.node("device", [&]
{
gen.attribute("name", "acpi");
});
}