diff options
author | Tetsuyuki Kobayashi | 2012-07-19 16:16:08 +0000 |
---|---|---|
committer | Albert ARIBAUD | 2012-10-03 02:04:23 +0200 |
commit | 18a65af408c77851c267cd8a071b5c7f6a2ef03b (patch) | |
tree | d1f86540030eadc44a1cd1d615b39382d4dbb3b3 /include/configs/kzm9g.h | |
parent | 2c1157df46031c798654dc31ef7f982e4e5295e8 (diff) |
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 <koba@kmckk.co.jp>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'include/configs/kzm9g.h')
-rw-r--r-- | include/configs/kzm9g.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/kzm9g.h b/include/configs/kzm9g.h index bd157d9b0f0..14f088fd086 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 |