]> xenbits.xensource.com Git - seabios.git/commitdiff
acpi: Minor - merge the two dsdt ISA areas into one ISA area.
authorKevin O'Connor <kevin@koconnor.net>
Tue, 4 Dec 2012 00:04:55 +0000 (19:04 -0500)
committerKevin O'Connor <kevin@koconnor.net>
Wed, 5 Dec 2012 15:57:52 +0000 (10:57 -0500)
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
src/acpi-dsdt.dsl

index 7cde3128530f1b4b18c0c29e8c2ea4b91d3d396e..8019b71bf57150aeb284c8f95f19b6440d32795b 100644 (file)
@@ -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"