diff options
Diffstat (limited to 'board/xaeniax')
-rw-r--r-- | board/xaeniax/Makefile | 2 | ||||
-rw-r--r-- | board/xaeniax/lowlevel_init.S (renamed from board/xaeniax/memsetup.S) | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/board/xaeniax/Makefile b/board/xaeniax/Makefile index da5a5ba..7c5f0cd 100644 --- a/board/xaeniax/Makefile +++ b/board/xaeniax/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a OBJS := xaeniax.o flash.o -SOBJS := memsetup.o +SOBJS := lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $(OBJS) $(SOBJS) diff --git a/board/xaeniax/memsetup.S b/board/xaeniax/lowlevel_init.S index 5c43b85..fe3e712 100644 --- a/board/xaeniax/memsetup.S +++ b/board/xaeniax/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 @@ -39,8 +39,8 @@ DRAM_SIZE: .long CFG_DRAM_SIZE .endm -.globl memsetup -memsetup: +.globl lowlevel_init +lowlevel_init: mov r10, lr @@ -416,9 +416,9 @@ test: #endif /* ---------------------------------------------------------------- */ - /* End memsetup */ + /* End lowlevel_init */ /* ---------------------------------------------------------------- */ -endmemsetup: +endlowlevel_init: mov pc, lr |