From 629e12a5e0eda21aa4e4000a95cdb1817fabe080 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 31 Mar 2004 04:38:35 +0000 Subject: 2004-03-31 Ralf Corsepius * clock/ckinit.c, startup/bspstart.c, timer/timer.c: Convert to using c99 fixed size types. --- c/src/lib/libbsp/m68k/idp/clock/ckinit.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'c/src/lib/libbsp/m68k/idp/clock') diff --git a/c/src/lib/libbsp/m68k/idp/clock/ckinit.c b/c/src/lib/libbsp/m68k/idp/clock/ckinit.c index 245c84df1f..4080112dd5 100644 --- a/c/src/lib/libbsp/m68k/idp/clock/ckinit.c +++ b/c/src/lib/libbsp/m68k/idp/clock/ckinit.c @@ -28,8 +28,8 @@ #include #include -rtems_unsigned32 Clock_isrs; /* ISRs until next tick */ -volatile rtems_unsigned32 Clock_driver_ticks; +uint32_t Clock_isrs; /* ISRs until next tick */ +volatile uint32_t Clock_driver_ticks; /* ticks since initialization */ rtems_isr_entry Old_ticker; @@ -130,7 +130,7 @@ rtems_isr_entry clock_isr; /* The following was added for debugging purposes */ void Clock_exit( void ) { - rtems_unsigned8 data; + uint8_t data; /* disable timer data = TCR; @@ -165,7 +165,7 @@ rtems_device_driver Clock_control( void *pargp ) { - rtems_unsigned32 isrlevel; + uint32_t isrlevel; rtems_libio_ioctl_args_t *args = pargp; if (args == 0) -- cgit v1.2.3