]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ARM: OMAP: Really fix compile warning in uncompress.h
authorKevin Hilman <kevin@hilman.org>
Thu, 6 Oct 2005 21:01:30 +0000 (14:01 -0700)
committerKevin Hilman <kevin@hilman.org>
Thu, 6 Oct 2005 21:01:30 +0000 (14:01 -0700)
First attempt used #elifdef which is not a real directive.

Signed-off-by: Kevin Hilman <kevin@hilman.org>
include/asm-arm/arch-omap/uncompress.h

index 80d1f0ea976b2457f95709c11d9307aa92a234d7..9ea5144f1e29205120f75a665a676d2b32f28dcb 100644 (file)
@@ -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);