summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/sparc/cpu.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-08 15:19:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-08 15:19:23 +0000
commitdf4fcaa0afa6c8878f1b44aa8bf1bdceea3863b9 (patch)
tree483d35f6cc4592afd62b7f2c64895f5a29f60921 /cpukit/score/cpu/sparc/cpu.c
parent2008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-df4fcaa0afa6c8878f1b44aa8bf1bdceea3863b9.tar.bz2
2008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c: Remove extraneous spaces.
Diffstat (limited to 'cpukit/score/cpu/sparc/cpu.c')
-rw-r--r--cpukit/score/cpu/sparc/cpu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/cpu/sparc/cpu.c b/cpukit/score/cpu/sparc/cpu.c
index aa1cc8f639..63ff2e574b 100644
--- a/cpukit/score/cpu/sparc/cpu.c
+++ b/cpukit/score/cpu/sparc/cpu.c
@@ -186,7 +186,7 @@ void _CPU_ISR_install_raw_handler(
*slot = _CPU_Trap_slot_template;
- u32_handler = (uint32_t ) new_handler;
+ u32_handler = (uint32_t) new_handler;
slot->mov_vector_l3 |= vector;
slot->sethi_of_handler_to_l4 |=
@@ -288,7 +288,7 @@ void _CPU_Context_Initialize(
* based on the stack_high address.
*/
- stack_high = ((uint32_t )(stack_base) + size);
+ stack_high = ((uint32_t)(stack_base) + size);
stack_high &= ~(CPU_STACK_ALIGNMENT - 1);
the_size = size & ~(CPU_STACK_ALIGNMENT - 1);
@@ -297,7 +297,7 @@ void _CPU_Context_Initialize(
* See the README in this directory for a diagram of the stack.
*/
- the_context->o7 = ((uint32_t ) entry_point) - 8;
+ the_context->o7 = ((uint32_t) entry_point) - 8;
the_context->o6_sp = stack_high - CPU_MINIMUM_STACK_FRAME_SIZE;
the_context->i6_fp = 0;