summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/sparc/cpu.c
diff options
context:
space:
mode:
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;