2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>

* clock/clock.c, include/bsp.h, shmsupp/cause_intr.c,
	shmsupp/getcfg.c, shmsupp/lock.c, startup/bspstart.c: Convert to
	using c99 fixed size types.
This commit is contained in:
Ralf Corsepius
2004-03-31 05:19:16 +00:00
parent e7d03cbcf0
commit 40d6543b56
7 changed files with 22 additions and 16 deletions

View File

@@ -19,9 +19,9 @@
void Clock_exit(void);
volatile rtems_unsigned32 Clock_driver_ticks;
volatile uint32_t Clock_driver_ticks;
rtems_unsigned32 Clock_driver_vector;
uint32_t Clock_driver_vector;
/*
* These are set by clock driver during its init
@@ -84,7 +84,7 @@ rtems_device_driver Clock_control(
void *pargp
)
{
rtems_unsigned32 isrlevel;
uint32_t isrlevel;
rtems_libio_ioctl_args_t *args = pargp;
if (args == 0)