diff options
Diffstat (limited to 'board/smdk2400')
-rw-r--r-- | board/smdk2400/Makefile | 2 | ||||
-rw-r--r-- | board/smdk2400/lowlevel_init.S (renamed from board/smdk2400/memsetup.S) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/board/smdk2400/Makefile b/board/smdk2400/Makefile index 367eabd..fc3d48f 100644 --- a/board/smdk2400/Makefile +++ b/board/smdk2400/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a OBJS := smdk2400.o flash.o -SOBJS := memsetup.o +SOBJS := lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $(OBJS) $(SOBJS) diff --git a/board/smdk2400/memsetup.S b/board/smdk2400/lowlevel_init.S index b507d81..a5de806 100644 --- a/board/smdk2400/memsetup.S +++ b/board/smdk2400/lowlevel_init.S @@ -125,8 +125,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 ! */ |