Use the same name (lowlevel_init) for all (ARM) boards
This commit is contained in:
parent
ba83a30765
commit
986ef4340e
2 changed files with 4 additions and 4 deletions
|
@ -74,8 +74,8 @@ _MTEXT_BASE:
|
|||
.word TEXT_BASE
|
||||
#endif
|
||||
|
||||
.globl lowlevelinit
|
||||
lowlevelinit:
|
||||
.globl lowlevel_init
|
||||
lowlevel_init:
|
||||
/* Get the CKGR Base Address */
|
||||
ldr r1, =AT91C_BASE_CKGR
|
||||
/* Main oscillator Enable register */
|
||||
|
|
|
@ -124,9 +124,9 @@ reset:
|
|||
/**** mov sp, r1 ****/
|
||||
/*
|
||||
* This does a lot more than just set up the memory, which
|
||||
* is why it's called lowlevelinit
|
||||
* is why it's called lowlevel_init
|
||||
*/
|
||||
bl lowlevelinit /* in lowlevel.S */
|
||||
bl lowlevel_init /* in lowlevel.S */
|
||||
|
||||
/*
|
||||
* Read/modify/write CP15 control register
|
||||
|
|
Loading…
Reference in a new issue