From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MvvP4-0004up-Nc for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:43 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MvvOw-0004fj-Bl for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:38 -0400 Received: from [199.232.76.173] (port=57569 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvvOv-0004f4-4u for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:4978) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MvvOu-0002KS-Du for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:32 -0400 From: Gleb Natapov Date: Thu, 8 Oct 2009 17:59:18 +0200 Message-Id: <1255017566-26220-14-git-send-email-gleb@redhat.com> In-Reply-To: <1255017566-26220-1-git-send-email-gleb@redhat.com> References: <1255017566-26220-1-git-send-email-gleb@redhat.com> Subject: [Qemu-devel] [PATCH 13/21] Remove irq 9 from the pci interrupt link resources. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kevin@koconnor.net Cc: qemu-devel@nongnu.org qemu can't share isa irqs (which is how the acpi sci interrupt is implemente with the pci irqs, so remove the sci interrupt from the pci link interrupt candidate list. Qemu pcbios commit 713939c93b9caa1a31c49211fe83525bcbee5948 Signed-off-by: Gleb Natapov --- 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 b7ac9f6..88d3b57 100644 --- a/src/acpi-dsdt.dsl +++ b/src/acpi-dsdt.dsl @@ -341,7 +341,7 @@ DefinitionBlock ( Name(_UID, 1) Name(_PRS, ResourceTemplate(){ Interrupt (, Level, ActiveHigh, Shared) - { 5, 9, 10, 11 } + { 5, 10, 11 } }) Method (_STA, 0, NotSerialized) { @@ -386,7 +386,7 @@ DefinitionBlock ( Name(_UID, 2) Name(_PRS, ResourceTemplate(){ Interrupt (, Level, ActiveHigh, Shared) - { 5, 9, 10, 11 } + { 5, 10, 11 } }) Method (_STA, 0, NotSerialized) { @@ -431,7 +431,7 @@ DefinitionBlock ( Name(_UID, 3) Name(_PRS, ResourceTemplate(){ Interrupt (, Level, ActiveHigh, Shared) - { 5, 9, 10, 11 } + { 5, 10, 11 } }) Method (_STA, 0, NotSerialized) { @@ -476,7 +476,7 @@ DefinitionBlock ( Name(_UID, 4) Name(_PRS, ResourceTemplate(){ Interrupt (, Level, ActiveHigh, Shared) - { 5, 9, 10, 11 } + { 5, 10, 11 } }) Method (_STA, 0, NotSerialized) { -- 1.6.3.3