From 18a65af408c77851c267cd8a071b5c7f6a2ef03b Mon Sep 17 00:00:00 2001 From: Tetsuyuki Kobayashi Date: Thu, 19 Jul 2012 16:16:08 +0000 Subject: arm: rmobile: kzm9g: Fix CONFIG_BAUDRATE setting The value of CONFIG_BAUDRATE is treated as string and put as initial value of environment variable. If it begin with '(', it is wrongly parsed to 0 in number. So I removed '(' and ')'. Signed-off-by: Tetsuyuki Kobayashi Signed-off-by: Nobuhiro Iwamatsu --- include/configs/kzm9g.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/configs/kzm9g.h') diff --git a/include/configs/kzm9g.h b/include/configs/kzm9g.h index bd157d9b0f..14f088fd08 100644 --- a/include/configs/kzm9g.h +++ b/include/configs/kzm9g.h @@ -46,7 +46,7 @@ #define CONFIG_CMD_FAT #define CONFIG_CMD_BOOTZ -#define CONFIG_BAUDRATE (115200) +#define CONFIG_BAUDRATE 115200 #define CONFIG_BOOTARGS "root=/dev/null console=ttySC4,115200" #define CONFIG_INTEGRATOR #define CONFIG_ARCH_CINTEGRATOR -- cgit v1.2.1