|
@@ -813,7 +813,6 @@ static void ich9_send_gpe(AcpiDeviceIf *adev, AcpiEventStatusBits ev)
|
|
|
static void build_ich9_isa_aml(AcpiDevAmlIf *adev, Aml *scope)
|
|
|
{
|
|
|
Aml *field;
|
|
|
- BusChild *kid;
|
|
|
ICH9LPCState *s = ICH9_LPC_DEVICE(adev);
|
|
|
BusState *bus = BUS(s->isa_bus);
|
|
|
Aml *sb_scope = aml_scope("\\_SB");
|
|
@@ -835,9 +834,7 @@ static void build_ich9_isa_aml(AcpiDevAmlIf *adev, Aml *scope)
|
|
|
aml_append(sb_scope, field);
|
|
|
aml_append(scope, sb_scope);
|
|
|
|
|
|
- QTAILQ_FOREACH(kid, &bus->children, sibling) {
|
|
|
- call_dev_aml_func(DEVICE(kid->child), scope);
|
|
|
- }
|
|
|
+ qbus_build_aml(bus, scope);
|
|
|
}
|
|
|
|
|
|
static void ich9_lpc_class_init(ObjectClass *klass, void *data)
|