Commit 4d527815 authored by Kevin Hilman's avatar Kevin Hilman

ARM: OMAP: Really fix compile warning in uncompress.h

First attempt used #elifdef which is not a real directive.
Signed-off-by: default avatarKevin Hilman <kevin@hilman.org>
parent b2fcd6f3
...@@ -43,7 +43,7 @@ putstr(const char *s) ...@@ -43,7 +43,7 @@ putstr(const char *s)
#ifdef CONFIG_ARCH_OMAP #ifdef CONFIG_ARCH_OMAP
#ifdef CONFIG_OMAP_LL_DEBUG_UART3 #ifdef CONFIG_OMAP_LL_DEBUG_UART3
uart = (volatile u8 *)(OMAP_UART3_BASE); 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); uart = (volatile u8 *)(OMAP_UART2_BASE);
#else #else
uart = (volatile u8 *)(OMAP_UART1_BASE); uart = (volatile u8 *)(OMAP_UART1_BASE);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment