From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HaY0v-0001KF-Vi for qemu-devel@nongnu.org; Sun, 08 Apr 2007 10:05:06 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HaY0u-0001IP-C9 for qemu-devel@nongnu.org; Sun, 08 Apr 2007 10:05:05 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HaY0u-0001IM-69 for qemu-devel@nongnu.org; Sun, 08 Apr 2007 10:05:04 -0400 Received: from ik-out-1112.google.com ([66.249.90.181]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1HaXxB-0002UX-8u for qemu-devel@nongnu.org; Sun, 08 Apr 2007 10:01:13 -0400 Received: by ik-out-1112.google.com with SMTP id c30so1029094ika for ; Sun, 08 Apr 2007 07:01:12 -0700 (PDT) Message-ID: Date: Sun, 8 Apr 2007 22:01:12 +0800 From: "Wang Cheng Yeh" MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_21738_5576151.1176040872194" Subject: [Qemu-devel] irq bug fix patch Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: paul@nowt.org, qemu-devel@nongnu.org ------=_Part_21738_5576151.1176040872194 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Index: hw/pl190.c =================================================================== RCS file: /sources/qemu/qemu/hw/pl190.c,v retrieving revision 1.2 diff -u -p -r1.2 pl190.c --- hw/pl190.c 7 Apr 2007 18:14:41 -0000 1.2 +++ hw/pl190.c 8 Apr 2007 13:53:18 -0000 @@ -240,7 +240,7 @@ qemu_irq *pl190_init(uint32_t base, qemu iomemtype = cpu_register_io_memory(0, pl190_readfn, pl190_writefn, s); cpu_register_physical_memory(base, 0x00000fff, iomemtype); - qi = qemu_allocate_irqs(pl190_set_irq, s, 16); + qi = qemu_allocate_irqs(pl190_set_irq, s, 32); s->base = base; s->irq = irq; s->fiq = fiq; ------=_Part_21738_5576151.1176040872194 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Index: hw/pl190.c
===================================================================
RCS file: /sources/qemu/qemu/hw/pl190.c,v
retrieving revision 1.2
diff -u -p -r1.2 pl190.c
--- hw/pl190.c  7 Apr 2007 18:14:41 -0000       1.2
+++ hw/pl190.c  8 Apr 2007 13:53:18 -0000
@@ -240,7 +240,7 @@ qemu_irq *pl190_init(uint32_t base, qemu
     iomemtype = cpu_register_io_memory(0, pl190_readfn,
                                        pl190_writefn, s);
     cpu_register_physical_memory(base, 0x00000fff, iomemtype);
-    qi = qemu_allocate_irqs(pl190_set_irq, s, 16);
+    qi = qemu_allocate_irqs(pl190_set_irq, s, 32);
     s->base = base;
     s->irq = irq;
     s->fiq = fiq;



------=_Part_21738_5576151.1176040872194--