summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/ods68302/clock/ckinit.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/m68k/ods68302/clock/ckinit.c')
-rw-r--r--c/src/lib/libbsp/m68k/ods68302/clock/ckinit.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/c/src/lib/libbsp/m68k/ods68302/clock/ckinit.c b/c/src/lib/libbsp/m68k/ods68302/clock/ckinit.c
index 39796f2837..8e3273ea86 100644
--- a/c/src/lib/libbsp/m68k/ods68302/clock/ckinit.c
+++ b/c/src/lib/libbsp/m68k/ods68302/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 );
@@ -129,7 +129,7 @@ rtems_device_driver Clock_control(
void *pargp
)
{
- rtems_unsigned32 isrlevel;
+ uint32_t isrlevel;
rtems_libio_ioctl_args_t *args = pargp;
if (args == 0)