diff options
author | Nishanth Menon <nm@ti.com> | 2015-07-22 18:05:43 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2015-07-27 15:02:18 -0400 |
commit | 59d4cd2297d76982d5207f15e247afc7704823e7 (patch) | |
tree | 93c6a45f299cf5bfdc9c012e556a790b6d7ebed4 /board | |
parent | 7f2f44da4819144f13b22b5c5471d43025919fa3 (diff) | |
download | u-boot-59d4cd2297d76982d5207f15e247afc7704823e7.zip u-boot-59d4cd2297d76982d5207f15e247afc7704823e7.tar.gz u-boot-59d4cd2297d76982d5207f15e247afc7704823e7.tar.bz2 |
board: ks2_evm: get rid of bogus CONFIG_LINUX_BOOT_PARAM_ADDR
CONFIG_LINUX_BOOT_PARAM_ADDR is not a valid configuration option. Do
just like what the rest of the world does.
Acked-by: Vitaly Andrianov <vitalya@ti.com>
Acked-By: Murali Karicheri <m-karicheri2@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/ti/ks2_evm/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/ks2_evm/board.c b/board/ti/ks2_evm/board.c index 8892a28..0cefb34 100644 --- a/board/ti/ks2_evm/board.c +++ b/board/ti/ks2_evm/board.c @@ -48,7 +48,7 @@ int dram_init(void) int board_init(void) { - gd->bd->bi_boot_params = CONFIG_LINUX_BOOT_PARAM_ADDR; + gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; return 0; } |