Use the same name (lowlevel_init) for all (ARM) boards
This commit is contained in:
parent
ba83a30765
commit
986ef4340e
|
@ -74,8 +74,8 @@ _MTEXT_BASE:
|
||||||
.word TEXT_BASE
|
.word TEXT_BASE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
.globl lowlevelinit
|
.globl lowlevel_init
|
||||||
lowlevelinit:
|
lowlevel_init:
|
||||||
/* Get the CKGR Base Address */
|
/* Get the CKGR Base Address */
|
||||||
ldr r1, =AT91C_BASE_CKGR
|
ldr r1, =AT91C_BASE_CKGR
|
||||||
/* Main oscillator Enable register */
|
/* Main oscillator Enable register */
|
||||||
|
|
|
@ -124,9 +124,9 @@ reset:
|
||||||
/**** mov sp, r1 ****/
|
/**** mov sp, r1 ****/
|
||||||
/*
|
/*
|
||||||
* This does a lot more than just set up the memory, which
|
* 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
|
* Read/modify/write CP15 control register
|
||||||
|
|
Loading…
Reference in New Issue