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 /board/mpl/vcma9 | |
parent | 414eec35e3832f4f9ce8a25ace7ead638be1f76f (diff) | |
download | u-boot-400558b561e2bdb47f87b96b3510dda0881a3662.tar.gz u-boot-400558b561e2bdb47f87b96b3510dda0881a3662.tar.xz u-boot-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 'board/mpl/vcma9')
-rw-r--r-- | board/mpl/vcma9/Makefile | 2 | ||||
-rw-r--r-- | board/mpl/vcma9/lowlevel_init.S (renamed from board/mpl/vcma9/memsetup.S) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/board/mpl/vcma9/Makefile b/board/mpl/vcma9/Makefile index f9b78f947d..304c965d12 100644 --- a/board/mpl/vcma9/Makefile +++ b/board/mpl/vcma9/Makefile @@ -28,7 +28,7 @@ LIB = lib$(BOARD).a OBJS := vcma9.o flash.o cmd_vcma9.o OBJS += ../common/common_util.o ../common/memtst.o -SOBJS := memsetup.o +SOBJS := lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $(OBJS) $(SOBJS) diff --git a/board/mpl/vcma9/memsetup.S b/board/mpl/vcma9/lowlevel_init.S index 98aec3db4d..a02335314b 100644 --- a/board/mpl/vcma9/memsetup.S +++ b/board/mpl/vcma9/lowlevel_init.S @@ -130,8 +130,8 @@ _TEXT_BASE: .word TEXT_BASE -.globl memsetup -memsetup: +.globl lowlevel_init +lowlevel_init: /* memory control configuration */ /* make r0 relative the current location so that it */ /* reads SMRDATA out of FLASH rather than memory ! */ |