summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-08 15:19:14 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-08 15:19:14 +0000
commitedb1810e669d3f70404b49a20cac917741520e0c (patch)
treed90658a1c62cf396c1284a687481206458c6eb87 /cpukit
parent2008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-edb1810e669d3f70404b49a20cac917741520e0c.tar.bz2
2008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* cpu.c, rtems/score/cpu.h: Remove extraneous spaces.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/score/cpu/m68k/ChangeLog4
-rw-r--r--cpukit/score/cpu/m68k/cpu.c6
-rw-r--r--cpukit/score/cpu/m68k/rtems/score/cpu.h2
3 files changed, 8 insertions, 4 deletions
diff --git a/cpukit/score/cpu/m68k/ChangeLog b/cpukit/score/cpu/m68k/ChangeLog
index 955d0f056e..38db3dcda4 100644
--- a/cpukit/score/cpu/m68k/ChangeLog
+++ b/cpukit/score/cpu/m68k/ChangeLog
@@ -1,3 +1,7 @@
+2008-09-08 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * cpu.c, rtems/score/cpu.h: Remove extraneous spaces.
+
2008-08-21 Ralf Corsépius <ralf.corsepius@rtems.org>
* rtems/score/types.h: Include stdbool.h.
diff --git a/cpukit/score/cpu/m68k/cpu.c b/cpukit/score/cpu/m68k/cpu.c
index cfba5279a1..8edea5372f 100644
--- a/cpukit/score/cpu/m68k/cpu.c
+++ b/cpukit/score/cpu/m68k/cpu.c
@@ -39,7 +39,7 @@ void _CPU_Initialize(
_CPU_ISR_jump_table[slot].move_a7 = M68K_MOVE_A7;
_CPU_ISR_jump_table[slot].format_id = slot << 2;
_CPU_ISR_jump_table[slot].jmp = M68K_JMP;
- _CPU_ISR_jump_table[slot].isr_handler = (uint32_t ) 0xDEADDEAD;
+ _CPU_ISR_jump_table[slot].isr_handler = (uint32_t) 0xDEADDEAD;
}
#endif /* M68K_HAS_VBR */
}
@@ -104,8 +104,8 @@ void _CPU_ISR_install_raw_handler(
*/
*old_handler = (proc_ptr) _CPU_ISR_jump_table[vector].isr_handler;
- _CPU_ISR_jump_table[vector].isr_handler = (uint32_t ) new_handler;
- if ( (uint32_t ) interrupt_table != 0xFFFFFFFF )
+ _CPU_ISR_jump_table[vector].isr_handler = (uint32_t) new_handler;
+ if ( (uint32_t) interrupt_table != 0xFFFFFFFF )
interrupt_table[ vector ] = (proc_ptr) &_CPU_ISR_jump_table[vector];
#endif /* M68K_HAS_VBR */
}
diff --git a/cpukit/score/cpu/m68k/rtems/score/cpu.h b/cpukit/score/cpu/m68k/rtems/score/cpu.h
index 1c46478cd8..d8daa42fdb 100644
--- a/cpukit/score/cpu/m68k/rtems/score/cpu.h
+++ b/cpukit/score/cpu/m68k/rtems/score/cpu.h
@@ -378,7 +378,7 @@ uint32_t _CPU_ISR_Get_level( void );
uint32_t _stack; \
\
(_the_context)->sr = 0x3000 | ((_isr) << 8); \
- _stack = (uint32_t )(_stack_base) + (_size) - 4; \
+ _stack = (uint32_t)(_stack_base) + (_size) - 4; \
(_the_context)->a7_msp = (void *)_stack; \
*(void **)_stack = (void *)(_entry_point); \
(_the_context)->fpu_dis = (_is_fp == TRUE) ? 0x00 : 0x10; \