diff options
author | Stefan Roese <sr@denx.de> | 2016-06-01 13:24:58 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2016-06-01 22:44:14 +0200 |
commit | 77cd5368cee8b6a5684877e1bf4d544bf271ef08 (patch) | |
tree | 527118455313fdf0525d757175e33fc30fbb2fed /include | |
parent | 5bb4050df36f016de106c0ab129319795acabc06 (diff) | |
download | u-boot-77cd5368cee8b6a5684877e1bf4d544bf271ef08.tar.gz u-boot-77cd5368cee8b6a5684877e1bf4d544bf271ef08.tar.bz2 u-boot-77cd5368cee8b6a5684877e1bf4d544bf271ef08.zip |
arm: socfpga: Add missing ',' in CONFIG_BOOTARGS
Somehow the sr1500 is missing this comma in the CONFIG_BOOTARGS
definition. This patch adds it to.
Signed-off-by: Stefan Roese <sr@denx.de>
Reported-by: Pavel Machek <pavel@denx.de>
Cc: Pavel Machek <pavel@denx.de>
Cc: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/socfpga_sr1500.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/socfpga_sr1500.h b/include/configs/socfpga_sr1500.h index efa9e428ce..c097f47edd 100644 --- a/include/configs/socfpga_sr1500.h +++ b/include/configs/socfpga_sr1500.h @@ -22,7 +22,7 @@ /* Booting Linux */ #define CONFIG_BOOTDELAY 3 #define CONFIG_BOOTFILE "uImage" -#define CONFIG_BOOTARGS "console=ttyS0" __stringify(CONFIG_BAUDRATE) +#define CONFIG_BOOTARGS "console=ttyS0," __stringify(CONFIG_BAUDRATE) #define CONFIG_BOOTCOMMAND "run mmcload; run mmcboot" #define CONFIG_LOADADDR 0x01000000 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR |