diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-08-07 15:24:59 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-01-28 13:26:10 -0500 |
commit | 36cd52a00794fb15ffab05d640acca92d7482993 (patch) | |
tree | ecc6af2e423fc9dd7c6c4469411644d6575c9b0f /include/asm-blackfin/blackfin-config-post.h | |
parent | c8054bc12e00669bd7588f2b30fef48aa94babac (diff) | |
download | u-boot-imx-36cd52a00794fb15ffab05d640acca92d7482993.zip u-boot-imx-36cd52a00794fb15ffab05d640acca92d7482993.tar.gz u-boot-imx-36cd52a00794fb15ffab05d640acca92d7482993.tar.bz2 |
Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/asm-blackfin/blackfin-config-post.h')
-rw-r--r-- | include/asm-blackfin/blackfin-config-post.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/asm-blackfin/blackfin-config-post.h b/include/asm-blackfin/blackfin-config-post.h index 0ab68ac..936001a 100644 --- a/include/asm-blackfin/blackfin-config-post.h +++ b/include/asm-blackfin/blackfin-config-post.h @@ -65,8 +65,11 @@ #endif /* Using L1 scratch pad makes sense for everyone by default. */ -#ifndef CMD_LINE_ADDR -# define CMD_LINE_ADDR L1_SRAM_SCRATCH +#ifndef CONFIG_LINUX_CMDLINE_ADDR +# define CONFIG_LINUX_CMDLINE_ADDR L1_SRAM_SCRATCH +#endif +#ifndef CONFIG_LINUX_CMDLINE_SIZE +# define CONFIG_LINUX_CMDLINE_SIZE L1_SRAM_SCRATCH_SIZE #endif #endif |