diff options
| author | wdenk <wdenk> | 2005-04-02 23:52:25 +0000 | 
|---|---|---|
| committer | wdenk <wdenk> | 2005-04-02 23:52:25 +0000 | 
| commit | 400558b561e2bdb47f87b96b3510dda0881a3662 (patch) | |
| tree | 479fa3918e0031a95cdac9468cb8396e1f1a9b60 /cpu/arm720t/start.S | |
| parent | 414eec35e3832f4f9ce8a25ace7ead638be1f76f (diff) | |
| download | olio-uboot-2014.01-400558b561e2bdb47f87b96b3510dda0881a3662.tar.xz olio-uboot-2014.01-400558b561e2bdb47f87b96b3510dda0881a3662.zip | |
Prepare for SoC rework of ARM code:
- rename CONFIG_BOOTBINFUNC into  CONFIG_INIT_CRITICAL
- rename memsetup into lowlevel_init (function name and source files)
Diffstat (limited to 'cpu/arm720t/start.S')
| -rw-r--r-- | cpu/arm720t/start.S | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/cpu/arm720t/start.S b/cpu/arm720t/start.S index bde936a75..0e15965df 100644 --- a/cpu/arm720t/start.S +++ b/cpu/arm720t/start.S @@ -316,10 +316,10 @@ cpu_init_crit:  	/*  	 * before relocating, we have to setup RAM timing  	 * because memory timing is board-dependent, you will -	 * find a memsetup.S in your board directory. +	 * find a lowlevel_init.S in your board directory.  	 */  	mov	ip, lr -	bl	memsetup +	bl	lowlevel_init  	mov	lr, ip  	mov	pc, lr |