From 4d52781590446127a14e8fbf802499ca86033b9d Mon Sep 17 00:00:00 2001 From: Kevin Hilman Date: Thu, 6 Oct 2005 14:01:30 -0700 Subject: [PATCH] ARM: OMAP: Really fix compile warning in uncompress.h First attempt used #elifdef which is not a real directive. Signed-off-by: Kevin Hilman --- include/asm-arm/arch-omap/uncompress.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/asm-arm/arch-omap/uncompress.h b/include/asm-arm/arch-omap/uncompress.h index 80d1f0ea976..9ea5144f1e2 100644 --- a/include/asm-arm/arch-omap/uncompress.h +++ b/include/asm-arm/arch-omap/uncompress.h @@ -43,7 +43,7 @@ putstr(const char *s) #ifdef CONFIG_ARCH_OMAP #ifdef CONFIG_OMAP_LL_DEBUG_UART3 uart = (volatile u8 *)(OMAP_UART3_BASE); -#elifdef CONFIG_OMAP_LL_DEBUG_UART2 +#elif defined(CONFIG_OMAP_LL_DEBUG_UART2) uart = (volatile u8 *)(OMAP_UART2_BASE); #else uart = (volatile u8 *)(OMAP_UART1_BASE); -- 2.41.0