From: Kevin Hilman Date: Thu, 6 Oct 2005 21:01:30 +0000 (-0700) Subject: ARM: OMAP: Really fix compile warning in uncompress.h X-Git-Tag: v2.6.15-omap2~168 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=4d52781590446127a14e8fbf802499ca86033b9d;p=linux-2.6-omap-h63xx.git ARM: OMAP: Really fix compile warning in uncompress.h First attempt used #elifdef which is not a real directive. Signed-off-by: Kevin Hilman --- 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);