diff options
author | wdenk | 2005-04-02 23:52:25 +0000 |
---|---|---|
committer | wdenk | 2005-04-02 23:52:25 +0000 |
commit | 400558b561e2bdb47f87b96b3510dda0881a3662 (patch) | |
tree | 479fa3918e0031a95cdac9468cb8396e1f1a9b60 /board/xm250 | |
parent | 414eec35e3832f4f9ce8a25ace7ead638be1f76f (diff) |
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/xm250')
-rw-r--r-- | board/xm250/Makefile | 2 | ||||
-rw-r--r-- | board/xm250/lowlevel_init.S (renamed from board/xm250/memsetup.S) | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/board/xm250/Makefile b/board/xm250/Makefile index 3572f726837..1b0a3f0178f 100644 --- a/board/xm250/Makefile +++ b/board/xm250/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a OBJS := xm250.o flash.o -SOBJS := memsetup.o +SOBJS := lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $^ diff --git a/board/xm250/memsetup.S b/board/xm250/lowlevel_init.S index f68e8433930..2ebd39554a1 100644 --- a/board/xm250/memsetup.S +++ b/board/xm250/lowlevel_init.S @@ -43,8 +43,8 @@ DRAM_SIZE: .long CFG_DRAM_SIZE .endm */ -.globl memsetup -memsetup: +.globl lowlevel_init +lowlevel_init: mov r10, lr @@ -516,4 +516,4 @@ mem_init: mov pc, r10 -@ End memsetup +@ End lowlevel_init |