Skip to content
Snippets Groups Projects
Commit efd988eb authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

mcc200: fix build error


Fix compile error:
include/configs/mcc200.h:401:6: error: #elif with no expression

Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
parent 8c0a92c8
No related branches found
No related tags found
No related merge requests found
...@@ -398,7 +398,7 @@ ...@@ -398,7 +398,7 @@
#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CS2_START | (CONFIG_QUART_CONSOLE - 1)<<5) #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CS2_START | (CONFIG_QUART_CONSOLE - 1)<<5)
#elif (CONFIG_QUART_CONSOLE > 4) && (CONFIG_QUART_CONSOLE < 9) #elif (CONFIG_QUART_CONSOLE > 4) && (CONFIG_QUART_CONSOLE < 9)
#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CS1_START | (CONFIG_QUART_CONSOLE - 5)<<5) #define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_CS1_START | (CONFIG_QUART_CONSOLE - 5)<<5)
#elif #else
#error "Wrong QUART expander number." #error "Wrong QUART expander number."
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment