summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/gen68302/clock
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 04:41:01 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 04:41:01 +0000
commitf3238bb3d197b79924fe41a21679e3fe1407e0d2 (patch)
tree79aea5e8137737f0168e1b83306557182280fa49 /c/src/lib/libbsp/m68k/gen68302/clock
parent2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-f3238bb3d197b79924fe41a21679e3fe1407e0d2.tar.bz2
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* 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.
Diffstat (limited to 'c/src/lib/libbsp/m68k/gen68302/clock')
-rw-r--r--c/src/lib/libbsp/m68k/gen68302/clock/ckinit.c6
1 files changed, 3 insertions, 3 deletions
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)