diff options
| author | Benoît Thébaudeau <benoit.thebaudeau@advansee.com> | 2013-04-11 09:36:01 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2013-04-12 07:55:08 +0200 | 
| commit | 66f30bf983bdc82a799d019401a88bfc720a5a05 (patch) | |
| tree | bbd878bc18df9f547fcf142b6e7505fcce77b428 /arch/arm/cpu/arm1176/start.S | |
| parent | e53232250b9dcff4915a6024f9951f52eadb4956 (diff) | |
| download | olio-uboot-2014.01-66f30bf983bdc82a799d019401a88bfc720a5a05.tar.xz olio-uboot-2014.01-66f30bf983bdc82a799d019401a88bfc720a5a05.zip | |
arm: Remove deprecated and now unused NAND SPL
Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Diffstat (limited to 'arch/arm/cpu/arm1176/start.S')
| -rw-r--r-- | arch/arm/cpu/arm1176/start.S | 12 | 
1 files changed, 4 insertions, 8 deletions
| diff --git a/arch/arm/cpu/arm1176/start.S b/arch/arm/cpu/arm1176/start.S index 5654c19d6..a7cf728ff 100644 --- a/arch/arm/cpu/arm1176/start.S +++ b/arch/arm/cpu/arm1176/start.S @@ -51,7 +51,7 @@  .globl _start  _start: b	reset -#ifndef CONFIG_NAND_SPL +#ifndef CONFIG_SPL_BUILD  	ldr	pc, _undefined_instruction  	ldr	pc, _software_interrupt  	ldr	pc, _prefetch_abort @@ -98,15 +98,11 @@ _end_vect:  .globl _TEXT_BASE  _TEXT_BASE: -#ifdef CONFIG_NAND_SPL /* deprecated, use instead CONFIG_SPL_BUILD */ -	.word	CONFIG_SYS_TEXT_BASE -#else  #if defined(CONFIG_SPL_BUILD) && defined(CONFIG_SPL_TEXT_BASE)  	.word	CONFIG_SPL_TEXT_BASE  #else  	.word	CONFIG_SYS_TEXT_BASE  #endif -#endif  /*   * Below variable is very important because we use MMU in U-Boot. @@ -176,7 +172,7 @@ cpu_init_crit:  	 * When booting from NAND - it has definitely been a reset, so, no need  	 * to flush caches and disable the MMU  	 */ -#ifndef CONFIG_NAND_SPL +#ifndef CONFIG_SPL_BUILD  	/*  	 * flush v4 I/D caches  	 */ @@ -361,7 +357,7 @@ c_runtime_cpu_setup:  	mov	pc, lr -#ifndef CONFIG_NAND_SPL +#ifndef CONFIG_SPL_BUILD  /*   * we assume that cache operation is done before. (eg. cleanup_before_linux())   * actually, we don't need to do anything about cache if not use d-cache in @@ -539,4 +535,4 @@ fiq:  	get_bad_stack  	bad_save_user_regs  	bl	do_fiq -#endif /* CONFIG_NAND_SPL */ +#endif /* CONFIG_SPL_BUILD */ |