Minor style consistency fix.

This commit is contained in:
Rafal Jaworowski 2009-04-22 13:18:04 +00:00
parent 7b6f38c007
commit d701728e3d

View File

@ -138,10 +138,10 @@ cpu_switchin:
* Update pcb, saving current processor state
*/
ENTRY(savectx)
mr %r12,%r2
stmw %r12,PCB_CONTEXT(%r3) /* Save the non-volatile GP regs */
mr %r12, %r2
stmw %r12, PCB_CONTEXT(%r3) /* Save the non-volatile GP regs */
mfcr %r4 /* Save the condition register */
stw %r4,PCB_CONTEXT(%r3)
stw %r4, PCB_CONTEXT(%r3)
blr
/*
@ -149,11 +149,11 @@ ENTRY(savectx)
* Set up the return from cpu_fork()
*/
ENTRY(fork_trampoline)
lwz %r3,CF_FUNC(%r1)
lwz %r4,CF_ARG0(%r1)
lwz %r5,CF_ARG1(%r1)
lwz %r3, CF_FUNC(%r1)
lwz %r4, CF_ARG0(%r1)
lwz %r5, CF_ARG1(%r1)
bl fork_exit
addi %r1,%r1,CF_SIZE-FSP /* Allow 8 bytes in front of
addi %r1, %r1, CF_SIZE-FSP /* Allow 8 bytes in front of
trapframe to simulate FRAME_SETUP
does when allocating space for
a frame pointer/saved LR */