summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/no_cpu/no_bsp/clock/ckinit.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 05:20:11 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 05:20:11 +0000
commit6505d3facca528369ffc4ab0bca54afb5247354e (patch)
treed2f5ef3f57c454170dd9b04ac3b9b322030c433d /c/src/lib/libbsp/no_cpu/no_bsp/clock/ckinit.c
parent2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-6505d3facca528369ffc4ab0bca54afb5247354e.tar.bz2
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* clock/ckinit.c, shmsupp/getcfg.c, shmsupp/lock.c, startup/bspstart.c, timer/timer.c, timer/timerisr.c: Convert to using c99 fixed size types.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/no_cpu/no_bsp/clock/ckinit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/no_cpu/no_bsp/clock/ckinit.c b/c/src/lib/libbsp/no_cpu/no_bsp/clock/ckinit.c
index d720b66659..e4954ab9af 100644
--- a/c/src/lib/libbsp/no_cpu/no_bsp/clock/ckinit.c
+++ b/c/src/lib/libbsp/no_cpu/no_bsp/clock/ckinit.c
@@ -34,7 +34,7 @@ rtems_isr Clock_isr( rtems_vector_number vector );
* 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
@@ -44,7 +44,7 @@ volatile rtems_unsigned32 Clock_driver_ticks;
* has passed.
*/
-rtems_unsigned32 Clock_isrs; /* ISRs until next tick */
+uint32_t Clock_isrs; /* ISRs until next tick */
/*
* These are set by clock driver during its init
@@ -153,7 +153,7 @@ rtems_device_driver Clock_control(
void *pargp
)
{
- rtems_unsigned32 isrlevel;
+ uint32_t isrlevel;
rtems_libio_ioctl_args_t *args = pargp;
if (args == 0)