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/lubbock | |
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/lubbock')
-rw-r--r-- | board/lubbock/Makefile | 2 | ||||
-rw-r--r-- | board/lubbock/lowlevel_init.S (renamed from board/lubbock/memsetup.S) | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/board/lubbock/Makefile b/board/lubbock/Makefile index 0e29e7be7aa..106622cf587 100644 --- a/board/lubbock/Makefile +++ b/board/lubbock/Makefile @@ -27,7 +27,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a OBJS := lubbock.o flash.o -SOBJS := memsetup.o +SOBJS := lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $(OBJS) $(SOBJS) diff --git a/board/lubbock/memsetup.S b/board/lubbock/lowlevel_init.S index dc0b7be024b..15276e89d01 100644 --- a/board/lubbock/memsetup.S +++ b/board/lubbock/lowlevel_init.S @@ -3,7 +3,7 @@ * * NOTE: I haven't clean this up considerably, just enough to get it * running. See hal_platform_setup.h for the source. See - * board/cradle/memsetup.S for another PXA250 setup that is + * board/cradle/lowlevel_init.S for another PXA250 setup that is * much cleaner. * * See file CREDITS for list of people who contributed to this @@ -43,8 +43,8 @@ DRAM_SIZE: .long CFG_DRAM_SIZE * Memory setup */ -.globl memsetup -memsetup: +.globl lowlevel_init +lowlevel_init: mov r10, lr @@ -403,9 +403,9 @@ initclks: #endif /* ---------------------------------------------------------------- */ - /* End memsetup */ + /* End lowlevel_init */ /* ---------------------------------------------------------------- */ -endmemsetup: +endlowlevel_init: mov pc, lr |