From patchwork Mon Jan 24 07:45:20 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: manjugk manjugk X-Patchwork-Id: 500481 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p0O7kM8h008994 for ; Mon, 24 Jan 2011 07:46:22 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751811Ab1AXHqU (ORCPT ); Mon, 24 Jan 2011 02:46:20 -0500 Received: from na3sys009aog106.obsmtp.com ([74.125.149.77]:54835 "EHLO na3sys009aog106.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751392Ab1AXHqU (ORCPT ); Mon, 24 Jan 2011 02:46:20 -0500 Received: from source ([209.85.160.176]) (using TLSv1) by na3sys009aob106.postini.com ([74.125.148.12]) with SMTP ID DSNKTT0uS/ECNSkx0y9xMp5aNWC9L3vRAy6t@postini.com; Sun, 23 Jan 2011 23:46:20 PST Received: by mail-gy0-f176.google.com with SMTP id 1so1286727gyf.21 for ; Sun, 23 Jan 2011 23:46:19 -0800 (PST) Received: by 10.150.135.7 with SMTP id i7mr4229407ybd.65.1295855179455; Sun, 23 Jan 2011 23:46:19 -0800 (PST) Received: from m-desktop (dragon.ti.com [192.94.94.33]) by mx.google.com with ESMTPS id u31sm8429779yba.9.2011.01.23.23.46.14 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 23 Jan 2011 23:46:18 -0800 (PST) Date: Mon, 24 Jan 2011 13:15:20 +0530 From: "G, Manjunath Kondaiah" To: "G, Manjunath Kondaiah" Cc: Kevin Hilman , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH] OMAP2+: remove unused UART base addresses from omap_globals Message-ID: <20110124074520.GB16582@m-desktop> References: <1295649015-26348-1-git-send-email-khilman@ti.com> <20110124064154.GA16582@m-desktop> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20110124064154.GA16582@m-desktop> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Mon, 24 Jan 2011 07:46:22 +0000 (UTC) diff --git a/arch/arm/mach-omap2/omap_hwmod_2420_data.c b/arch/arm/mach-omap2/omap_hwmod_2420_data.c index b85c630..7347bbc 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2420_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2420_data.c @@ -366,8 +366,8 @@ static struct omap_hwmod_irq_info uart1_mpu_irqs[] = { }; static struct omap_hwmod_dma_info uart1_sdma_reqs[] = { - { .name = "rx", .dma_req = OMAP24XX_DMA_UART1_RX, }, - { .name = "tx", .dma_req = OMAP24XX_DMA_UART1_TX, }, + { .name = "rx", .dma_req = 50, }, + { .name = "tx", .dma_req = 49, }, }; static struct omap_hwmod_ocp_if *omap2420_uart1_slaves[] = { @@ -403,8 +403,8 @@ static struct omap_hwmod_irq_info uart2_mpu_irqs[] = { }; static struct omap_hwmod_dma_info uart2_sdma_reqs[] = { - { .name = "rx", .dma_req = OMAP24XX_DMA_UART2_RX, }, - { .name = "tx", .dma_req = OMAP24XX_DMA_UART2_TX, }, + { .name = "rx", .dma_req = 52, }, + { .name = "tx", .dma_req = 51, }, }; static struct omap_hwmod_ocp_if *omap2420_uart2_slaves[] = { @@ -440,8 +440,8 @@ static struct omap_hwmod_irq_info uart3_mpu_irqs[] = { }; static struct omap_hwmod_dma_info uart3_sdma_reqs[] = { - { .name = "rx", .dma_req = OMAP24XX_DMA_UART3_RX, }, - { .name = "tx", .dma_req = OMAP24XX_DMA_UART3_TX, }, + { .name = "rx", .dma_req = 54, }, + { .name = "tx", .dma_req = 53, }, }; static struct omap_hwmod_ocp_if *omap2420_uart3_slaves[] = { diff --git a/arch/arm/mach-omap2/omap_hwmod_2430_data.c b/arch/arm/mach-omap2/omap_hwmod_2430_data.c index 8ecfbcd..1d8c391 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2430_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2430_data.c @@ -365,8 +365,8 @@ static struct omap_hwmod_irq_info uart1_mpu_irqs[] = { }; static struct omap_hwmod_dma_info uart1_sdma_reqs[] = { - { .name = "rx", .dma_req = OMAP24XX_DMA_UART1_RX, }, - { .name = "tx", .dma_req = OMAP24XX_DMA_UART1_TX, }, + { .name = "rx", .dma_req = 50, }, + { .name = "tx", .dma_req = 49, }, }; static struct omap_hwmod_ocp_if *omap2430_uart1_slaves[] = { @@ -402,8 +402,8 @@ static struct omap_hwmod_irq_info uart2_mpu_irqs[] = { }; static struct omap_hwmod_dma_info uart2_sdma_reqs[] = { - { .name = "rx", .dma_req = OMAP24XX_DMA_UART2_RX, }, - { .name = "tx", .dma_req = OMAP24XX_DMA_UART2_TX, }, + { .name = "rx", .dma_req = 52, }, + { .name = "tx", .dma_req = 51, }, }; static struct omap_hwmod_ocp_if *omap2430_uart2_slaves[] = { @@ -439,8 +439,8 @@ static struct omap_hwmod_irq_info uart3_mpu_irqs[] = { }; static struct omap_hwmod_dma_info uart3_sdma_reqs[] = { - { .name = "rx", .dma_req = OMAP24XX_DMA_UART3_RX, }, - { .name = "tx", .dma_req = OMAP24XX_DMA_UART3_TX, }, + { .name = "rx", .dma_req = 54, }, + { .name = "tx", .dma_req = 53, }, }; static struct omap_hwmod_ocp_if *omap2430_uart3_slaves[] = { diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c index 8d81813..1595cc0 100644 --- a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c @@ -518,8 +518,8 @@ static struct omap_hwmod_irq_info uart1_mpu_irqs[] = { }; static struct omap_hwmod_dma_info uart1_sdma_reqs[] = { - { .name = "tx", .dma_req = OMAP24XX_DMA_UART1_TX, }, - { .name = "rx", .dma_req = OMAP24XX_DMA_UART1_RX, }, + { .name = "tx", .dma_req = 49, }, + { .name = "rx", .dma_req = 50, }, };