From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L1p5m-0000vZ-Vr for qemu-devel@nongnu.org; Sun, 16 Nov 2008 16:23:39 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L1p5l-0000uV-0M for qemu-devel@nongnu.org; Sun, 16 Nov 2008 16:23:38 -0500 Received: from [199.232.76.173] (port=34601 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L1p5k-0000uR-UL for qemu-devel@nongnu.org; Sun, 16 Nov 2008 16:23:36 -0500 Received: from 42.mail-out.ovh.net ([213.251.189.42]:37063) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1L1p5k-0005c5-HZ for qemu-devel@nongnu.org; Sun, 16 Nov 2008 16:23:36 -0500 From: Jean-Christophe PLAGNIOL-VILLARD Date: Sun, 16 Nov 2008 22:18:57 +0100 Message-Id: <1226870338-31165-3-git-send-email-plagnioj@jcrosoft.com> In-Reply-To: <1226870338-31165-2-git-send-email-plagnioj@jcrosoft.com> References: <20081116211702.GA9160@game.jcrosoft.org> <1226870338-31165-1-git-send-email-plagnioj@jcrosoft.com> <1226870338-31165-2-git-send-email-plagnioj@jcrosoft.com> Subject: [Qemu-devel] [PATCH 3/4] omap1: fix uart3 init Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Jean-Christophe PLAGNIOL-VILLARD Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- hw/omap1.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/omap1.c b/hw/omap1.c index 45ee567..810fe2f 100644 --- a/hw/omap1.c +++ b/hw/omap1.c @@ -4778,7 +4778,7 @@ struct omap_mpu_state_s *omap310_mpu_init(unsigned long sdram_size, omap_findclk(s, "uart2_ck"), s->drq[OMAP_DMA_UART2_TX], s->drq[OMAP_DMA_UART2_RX], serial_hds[0] ? serial_hds[1] : 0); - s->uart[2] = omap_uart_init(0xe1019800, s->irq[0][OMAP_INT_UART3], + s->uart[2] = omap_uart_init(0xfffb9800, s->irq[0][OMAP_INT_UART3], omap_findclk(s, "uart3_ck"), omap_findclk(s, "uart3_ck"), s->drq[OMAP_DMA_UART3_TX], s->drq[OMAP_DMA_UART3_RX], -- 1.5.6.5