summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/m68k/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-21 13:18:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-07-21 13:18:30 +0000
commit186fee26efd18fc89a67a7b09bf721e71a369320 (patch)
tree4bc71cc17d0e71ff702ad9d03c8ef1baa89b7b03 /cpukit/score/cpu/m68k/rtems
parent2011-07-21 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-186fee26efd18fc89a67a7b09bf721e71a369320.tar.bz2
2011-07-21 Joel Sherrill <joel.sherrill@oarcorp.com>
* libfs/src/dosfs/fat_file.c, libmisc/monitor/monitor.h, score/cpu/m68k/rtems/score/cpu.h: Remove stray spaces from unsigned32 to uint32_t conversion.
Diffstat (limited to 'cpukit/score/cpu/m68k/rtems')
-rw-r--r--cpukit/score/cpu/m68k/rtems/score/cpu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/cpu/m68k/rtems/score/cpu.h b/cpukit/score/cpu/m68k/rtems/score/cpu.h
index 8aa06de412..6d4a5d28bc 100644
--- a/cpukit/score/cpu/m68k/rtems/score/cpu.h
+++ b/cpukit/score/cpu/m68k/rtems/score/cpu.h
@@ -6,7 +6,7 @@
* This include file contains information pertaining to the Motorola
* m68xxx processor family.
*
- * COPYRIGHT (c) 1989-2006.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -457,7 +457,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); \
} while ( 0 )