From: Kevin O'Connor Date: Tue, 4 Dec 2012 00:04:55 +0000 (-0500) Subject: acpi: Minor - merge the two dsdt ISA areas into one ISA area. X-Git-Tag: rel-1.7.2~14 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=f92f83311d7c1a10d0e2566ab8d8bc6899b62dd0;p=seabios.git acpi: Minor - merge the two dsdt ISA areas into one ISA area. Signed-off-by: Kevin O'Connor --- diff --git a/src/acpi-dsdt.dsl b/src/acpi-dsdt.dsl index 7cde312..8019b71 100644 --- a/src/acpi-dsdt.dsl +++ b/src/acpi-dsdt.dsl @@ -76,20 +76,6 @@ DefinitionBlock ( } -/**************************************************************** - * PIIX3 ISA bridge - ****************************************************************/ - - Scope(\_SB.PCI0) { - Device(ISA) { - Name(_ADR, 0x00010000) - - /* PIIX PCI to ISA irq remapping */ - OperationRegion(P40C, PCI_Config, 0x60, 0x04) - } - } - - /**************************************************************** * PIIX4 PM ****************************************************************/ @@ -103,23 +89,29 @@ DefinitionBlock ( /**************************************************************** - * SuperIO devices (kbd, mouse, etc.) + * PIIX3 ISA bridge ****************************************************************/ - Scope(\_SB.PCI0.ISA) { - - /* enable bits */ - Field(\_SB.PCI0.PX13.P13C, AnyAcc, NoLock, Preserve) { - Offset(0x5f), - , 7, - LPEN, 1, // LPT - Offset(0x67), - , 3, - CAEN, 1, // COM1 - , 3, - CBEN, 1, // COM2 + Scope(\_SB.PCI0) { + Device(ISA) { + Name(_ADR, 0x00010000) + + /* PIIX PCI to ISA irq remapping */ + OperationRegion(P40C, PCI_Config, 0x60, 0x04) + + /* enable bits */ + Field(\_SB.PCI0.PX13.P13C, AnyAcc, NoLock, Preserve) { + Offset(0x5f), + , 7, + LPEN, 1, // LPT + Offset(0x67), + , 3, + CAEN, 1, // COM1 + , 3, + CBEN, 1, // COM2 + } + Name(FDEN, 1) } - Name(FDEN, 1) } #include "acpi-dsdt-isa.dsl"