From f3238bb3d197b79924fe41a21679e3fe1407e0d2 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 31 Mar 2004 04:41:01 +0000 Subject: 2004-03-31 Ralf Corsepius * clock/ckinit.c, console/console.c, include/bsp.h, network/network.c, startup/bspstart.c, timer/timer.c: Convert to using c99 fixed size types. --- c/src/lib/libbsp/m68k/gen68302/clock/ckinit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'c/src/lib/libbsp/m68k/gen68302/clock/ckinit.c') diff --git a/c/src/lib/libbsp/m68k/gen68302/clock/ckinit.c b/c/src/lib/libbsp/m68k/gen68302/clock/ckinit.c index c903fda81c..c9b98314e6 100644 --- a/c/src/lib/libbsp/m68k/gen68302/clock/ckinit.c +++ b/c/src/lib/libbsp/m68k/gen68302/clock/ckinit.c @@ -38,7 +38,7 @@ * Clock_driver_ticks is a monotonically increasing counter of the * number of clock ticks since the driver was initialized. */ -volatile rtems_unsigned32 Clock_driver_ticks; +volatile uint32_t Clock_driver_ticks; /* * Clock_isrs is the number of clock ISRs until the next invocation of @@ -47,7 +47,7 @@ volatile rtems_unsigned32 Clock_driver_ticks; * length of time between the user configured microseconds per tick * has passed. */ -rtems_unsigned32 Clock_isrs; +uint32_t Clock_isrs; void Clock_exit( void ); @@ -128,7 +128,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