From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MvvOz-0004m9-1Y for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:37 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MvvOt-0004cD-AH for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:35 -0400 Received: from [199.232.76.173] (port=57559 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvvOs-0004bK-Q7 for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:30 -0400 Received: from mx1.redhat.com ([209.132.183.28]:2980) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MvvOr-0002JY-WE for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:30 -0400 From: Gleb Natapov Date: Thu, 8 Oct 2009 17:59:09 +0200 Message-Id: <1255017566-26220-5-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 04/21] Correct default pci irq links 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 The hardware uses irqs 10 and 11, so change the bios to reflect that. Qemu pcbios commit b0a155cfddc57e93b641a24fb198fdd8d738f143 Signed-off-by: Gleb Natapov --- src/pciinit.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/src/pciinit.c b/src/pciinit.c index fffbd1e..8db1fea 100644 --- a/src/pciinit.c +++ b/src/pciinit.c @@ -19,11 +19,7 @@ static u32 pci_bios_mem_addr; static u32 pci_bios_bigmem_addr; /* host irqs corresponding to PCI irqs A-D */ static u8 pci_irqs[4] = { -#if CONFIG_KVM 10, 10, 11, 11 -#else - 11, 9, 11, 9 -#endif }; static void pci_set_io_region_addr(u16 bdf, int region_num, u32 addr) -- 1.6.3.3