From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ragner Magalhaes Subject: [PATCH] Compile fix OMAP1 DMA V4 Base Date: Sat, 23 Jun 2007 15:48:55 -0400 Message-ID: <20070623194855.22272.15633.stgit@localhost.localdomain> Content-Type: text/plain; charset=utf-8; format=fixed Content-Transfer-Encoding: 8bit Return-path: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linux-omap-open-source-bounces@linux.omap.com Errors-To: linux-omap-open-source-bounces@linux.omap.com To: x0khasim@ti.com Cc: linux-omap-open-source@linux.omap.com List-Id: linux-omap@vger.kernel.org From: Ragner Magalhaes when OMAP1, OMAP_DMA4_BASE(DMA V4 Base) is not defined causing the follow complile error: arch/arm/plat-omap/dma.c: In function 'omap_set_dma_src_params': arch/arm/plat-omap/dma.c:273: error: 'OMAP_DMA4_BASE' undeclared (first use in this function) arch/arm/plat-omap/dma.c:273: error: (Each undeclared identifier is reported only once arch/arm/plat-omap/dma.c:273: error: for each function it appears in.) ... make[1]: *** [arch/arm/plat-omap/dma.o] Error 1 Signed-off-by: Ragner Magalhaes --- include/asm-arm/arch-omap/dma.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/asm-arm/arch-omap/dma.h b/include/asm-arm/arch-omap/dma.h index e9546df..fa898c8 100644 --- a/include/asm-arm/arch-omap/dma.h +++ b/include/asm-arm/arch-omap/dma.h @@ -49,6 +49,8 @@ #define OMAP_DMA4_BASE (L4_34XX_BASE + 0x56000) #elif defined(CONFIG_ARCH_OMAP2) #define OMAP_DMA4_BASE (L4_24XX_BASE + 0x56000) +#else +#define OMAP_DMA4_BASE (L4_24XX_BASE + 0x56000) #endif #define OMAP_DMA4_REVISION (OMAP_DMA4_BASE + 0x00)