summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/idp/timer/timer.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 04:38:35 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 04:38:35 +0000
commit629e12a5e0eda21aa4e4000a95cdb1817fabe080 (patch)
tree3569d59d4eba2da739e472331760979439c2cc14 /c/src/lib/libbsp/m68k/idp/timer/timer.c
parent2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-629e12a5e0eda21aa4e4000a95cdb1817fabe080.tar.bz2
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* clock/ckinit.c, startup/bspstart.c, timer/timer.c: Convert to using c99 fixed size types.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/m68k/idp/timer/timer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/m68k/idp/timer/timer.c b/c/src/lib/libbsp/m68k/idp/timer/timer.c
index 2e7516af32..1c14f595b9 100644
--- a/c/src/lib/libbsp/m68k/idp/timer/timer.c
+++ b/c/src/lib/libbsp/m68k/idp/timer/timer.c
@@ -67,9 +67,9 @@ void Timer_initialize()
int Read_timer()
{
- rtems_unsigned8 data;
- rtems_unsigned8 msb, osb, lsb;
- rtems_unsigned32 remaining, total;
+ uint8_t data;
+ uint8_t msb, osb, lsb;
+ uint32_t remaining, total;
/* Disable timer so that timer can be read
data = TCR;