Skip to content

Commit e0d1a82

Browse files
kraxelmstsirkin
authored andcommitted
acpi: q35: drop _SB.PCI0.ISA.LPCD opregion.
Seems to be unused. ich9 DSDT changes: Scope (_SB.PCI0) { Device (ISA) { Name (_ADR, 0x001F0000) // _ADR: Address OperationRegion (PIRQ, PCI_Config, 0x60, 0x0C) - OperationRegion (LPCD, PCI_Config, 0x80, 0x02) - Field (LPCD, AnyAcc, NoLock, Preserve) - { - COMA, 3, - , 1, - COMB, 3, - Offset (0x01), - LPTD, 2 - } } } Signed-off-by: Gerd Hoffmann <[email protected]> Reviewed-by: Igor Mammedov <[email protected]> Message-Id: <[email protected]> Reviewed-by: Michael S. Tsirkin <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]>
1 parent 9b3bff1 commit e0d1a82

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

hw/i386/acpi-build.c

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1340,7 +1340,6 @@ static void build_q35_isa_bridge(Aml *table)
13401340
{
13411341
Aml *dev;
13421342
Aml *scope;
1343-
Aml *field;
13441343

13451344
scope = aml_scope("_SB.PCI0");
13461345
dev = aml_device("ISA");
@@ -1350,16 +1349,6 @@ static void build_q35_isa_bridge(Aml *table)
13501349
aml_append(dev, aml_operation_region("PIRQ", AML_PCI_CONFIG,
13511350
aml_int(0x60), 0x0C));
13521351

1353-
aml_append(dev, aml_operation_region("LPCD", AML_PCI_CONFIG,
1354-
aml_int(0x80), 0x02));
1355-
field = aml_field("LPCD", AML_ANY_ACC, AML_NOLOCK, AML_PRESERVE);
1356-
aml_append(field, aml_named_field("COMA", 3));
1357-
aml_append(field, aml_reserved_field(1));
1358-
aml_append(field, aml_named_field("COMB", 3));
1359-
aml_append(field, aml_reserved_field(1));
1360-
aml_append(field, aml_named_field("LPTD", 2));
1361-
aml_append(dev, field);
1362-
13631352
aml_append(scope, dev);
13641353
aml_append(table, scope);
13651354
}

0 commit comments

Comments
 (0)