diff options
author | Heiko Schocher <hs@denx.de> | 2015-06-29 09:10:46 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-08-12 20:47:13 -0400 |
commit | 80402f34f8e1f46134a0272ff4d34be64ff7380b (patch) | |
tree | 5fcf26d057c39f522fe4cf6ed77966dc322d72b8 /common/cli_simple.c | |
parent | acb5ff021eb65931d3e970da8ff0a00dda0cd088 (diff) | |
download | u-boot-midas-80402f34f8e1f46134a0272ff4d34be64ff7380b.tar.gz u-boot-midas-80402f34f8e1f46134a0272ff4d34be64ff7380b.tar.bz2 u-boot-midas-80402f34f8e1f46134a0272ff4d34be64ff7380b.zip |
spl, common, serial: build SPL without serial support
This patch enables building SPL without
CONFIG_SPL_SERIAL_SUPPORT support.
Signed-off-by: Heiko Schocher <hs@denx.de>
[trini: Ensure we build arch/arm/imx-common on mx28]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/cli_simple.c')
-rw-r--r-- | common/cli_simple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cli_simple.c b/common/cli_simple.c index 6c65cc686c..00a8d2f48b 100644 --- a/common/cli_simple.c +++ b/common/cli_simple.c @@ -68,7 +68,7 @@ void cli_simple_process_macros(const char *input, char *output) /* 1 = waiting for '(' or '{' */ /* 2 = waiting for ')' or '}' */ /* 3 = waiting for ''' */ - char *output_start = output; + char __maybe_unused *output_start = output; debug_parser("[PROCESS_MACROS] INPUT len %zd: \"%s\"\n", strlen(input), input); |