cosmetic renaming

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1513 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2009-02-18 12:02:22 +00:00
parent b1298c8c4c
commit 6286423da8
2 changed files with 5 additions and 5 deletions

View File

@ -242,10 +242,10 @@ __start:
# warning "Far RAM support not implemented" # warning "Far RAM support not implemented"
#endif #endif
/* Perform early serial initialization */ /* Perform early console initialization */
#ifdef CONFIG_USE_EARLYSERIALINIT #ifdef CONFIG_USE_EARLYSERIALINIT
.globl _up_earlyconsoleinit /* Early initialization of serial driver */ .globl _up_earlyconsoleinit /* Early initialization of console driver */
jsr.a _up_earlyconsoleinit /* Call it */ jsr.a _up_earlyconsoleinit /* Call it */
showprogress 'D' showprogress 'D'
#endif #endif

View File

@ -424,10 +424,10 @@ __start0:
showprogress 'A' showprogress 'A'
/* Perform early serial initialization */ /* Perform early console initialization */
#ifdef CONFIG_USE_EARLYSERIALINIT #ifdef CONFIG_USE_EARLYSERIALINIT
mov.l .Learlyser, r0 /* Address of up_earlyconsoleinit */ mov.l .Learlyconsole, r0 /* Address of up_earlyconsoleinit */
jsr @r0 /* Call it */ jsr @r0 /* Call it */
or r0, r0 /* Delay slot */ or r0, r0 /* Delay slot */
#endif #endif
@ -482,7 +482,7 @@ __start0:
.Lebss: .Lebss:
.long _ebss .long _ebss
#ifdef CONFIG_USE_EARLYSERIALINIT #ifdef CONFIG_USE_EARLYSERIALINIT
.Learlyser: .Learlyconsole:
.long _up_earlyconsoleinit .long _up_earlyconsoleinit
#endif #endif
.Llowsetup: .Llowsetup: