qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 11/21] Restrict pci interrupts to irq 5/9/10/11


From: Gleb Natapov
Subject: [Qemu-devel] [PATCH 11/21] Restrict pci interrupts to irq 5/9/10/11
Date: Thu, 8 Oct 2009 17:59:16 +0200

we need to specify the pci interrupts as active high; this reduces
the number of override entries we have to add.

Qemu pcbios commit 0f79abf26ff3e61dab712dbccdbc08a04619e7c0

Signed-off-by: Gleb Natapov <address@hidden>
---
 src/acpi-dsdt.dsl |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/acpi-dsdt.dsl b/src/acpi-dsdt.dsl
index 9d6aba9..905d58b 100644
--- a/src/acpi-dsdt.dsl
+++ b/src/acpi-dsdt.dsl
@@ -341,7 +341,7 @@ DefinitionBlock (
                 Name(_UID, 1)
                 Name(_PRS, ResourceTemplate(){
                     IRQ (Level, ActiveHigh, Shared)
-                        {3,4,5,6,7,9,10,11,12}
+                        { 5, 9, 10, 11 }
                 })
                 Method (_STA, 0, NotSerialized)
                 {
@@ -388,7 +388,7 @@ DefinitionBlock (
                 Name(_UID, 2)
                 Name(_PRS, ResourceTemplate(){
                     IRQ (Level, ActiveHigh, Shared)
-                        {3,4,5,6,7,9,10,11,12}
+                        { 5, 9, 10, 11 }
                 })
                 Method (_STA, 0, NotSerialized)
                 {
@@ -435,7 +435,7 @@ DefinitionBlock (
                 Name(_UID, 3)
                 Name(_PRS, ResourceTemplate(){
                     IRQ (Level, ActiveHigh, Shared)
-                        {3,4,5,6,7,9,10,11,12}
+                        { 5, 9, 10, 11 }
                 })
                 Method (_STA, 0, NotSerialized)
                 {
@@ -482,7 +482,7 @@ DefinitionBlock (
                 Name(_UID, 4)
                 Name(_PRS, ResourceTemplate(){
                     IRQ (Level, ActiveHigh, Shared)
-                        {3,4,5,6,7,9,10,11,12}
+                        { 5, 9, 10, 11 }
                 })
                 Method (_STA, 0, NotSerialized)
                 {
-- 
1.6.3.3





reply via email to

[Prev in Thread] Current Thread [Next in Thread]