diff options
Diffstat (limited to 'board/shannon')
-rw-r--r-- | board/shannon/Makefile | 2 | ||||
-rw-r--r-- | board/shannon/lowlevel_init.S (renamed from board/shannon/memsetup.S) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/board/shannon/Makefile b/board/shannon/Makefile index 86098a3..f66b096 100644 --- a/board/shannon/Makefile +++ b/board/shannon/Makefile @@ -26,7 +26,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a OBJS := shannon.o flash.o -SOBJS := memsetup.o +SOBJS := lowlevel_init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $(OBJS) $(SOBJS) diff --git a/board/shannon/memsetup.S b/board/shannon/lowlevel_init.S index a9a8777..0655c42 100644 --- a/board/shannon/memsetup.S +++ b/board/shannon/lowlevel_init.S @@ -51,8 +51,8 @@ mecr: .long 0x7fff7fff @ 01000000 /* setting up the memory */ -.globl memsetup -memsetup: +.globl lowlevel_init +lowlevel_init: ldr r0, MEM_BASE /* Setup the flash memory */ |