summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/powerpc/rtems/powerpc/registers.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-30 11:49:33 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-30 11:49:33 +0000
commit30b1016bf84b5b0a6d12bdd491b093dddce30fb4 (patch)
tree3d5b1e1deabccd70df07e90ae10ca1e64270aa51 /cpukit/score/cpu/powerpc/rtems/powerpc/registers.h
parent2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-30b1016bf84b5b0a6d12bdd491b093dddce30fb4.tar.bz2
2004-03-30 Ralf Corsepius <ralf_corsepius@rtems.org>
* rtems/new-exceptions/cpu.h, rtems/old-exceptions/cpu.h, rtems/powerpc/registers.h: Convert to using c99 fixed size types.
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/powerpc/rtems/powerpc/registers.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/cpu/powerpc/rtems/powerpc/registers.h b/cpukit/score/cpu/powerpc/rtems/powerpc/registers.h
index 7c3f39b4d8..b3afabe504 100644
--- a/cpukit/score/cpu/powerpc/rtems/powerpc/registers.h
+++ b/cpukit/score/cpu/powerpc/rtems/powerpc/registers.h
@@ -278,7 +278,7 @@ static inline void PPC_Set_timebase_register (unsigned long long tbr)
#define rtems_bsp_delay( _microseconds ) \
do { \
- unsigned32 start, ticks, now; \
+ uint32_t start, ticks, now; \
CPU_Get_timebase_low( start ) ; \
ticks = (_microseconds) * rtems_cpu_configuration_get_clicks_per_usec(); \
do \
@@ -288,7 +288,7 @@ static inline void PPC_Set_timebase_register (unsigned long long tbr)
#define rtems_bsp_delay_in_bus_cycles( _cycles ) \
do { \
- unsigned32 start, now; \
+ uint32_t start, now; \
CPU_Get_timebase_low( start ); \
do \
CPU_Get_timebase_low( now ); \