From d701728e3d3fca4a4af8fd14d93ff626100749ca Mon Sep 17 00:00:00 2001 From: Rafal Jaworowski Date: Wed, 22 Apr 2009 13:18:04 +0000 Subject: [PATCH] Minor style consistency fix. --- sys/powerpc/booke/swtch.S | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sys/powerpc/booke/swtch.S b/sys/powerpc/booke/swtch.S index 8ffaf6def04..f7a9088e506 100644 --- a/sys/powerpc/booke/swtch.S +++ b/sys/powerpc/booke/swtch.S @@ -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 */