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

* bootloader/misc.c, bootloader/pci.c, console/inch.c,
	include/bsp.h, pci/pci.c, startup/bspstart.c, startup/sbrk.c:
	Convert to using c99 fixed size types.
This commit is contained in:
Ralf Corsepius
2004-03-31 03:52:40 +00:00
parent d3526785d2
commit bde7f2688f
8 changed files with 46 additions and 40 deletions

View File

@@ -237,9 +237,9 @@ static int ticks_per_ms=0;
/* this is from rtems_bsp_delay from libcpu */
void
boot_udelay(unsigned32 _microseconds)
boot_udelay(uint32_t _microseconds)
{
unsigned32 start, ticks, now;
uint32_t start, ticks, now;
ticks = _microseconds * ticks_per_ms / 1000;
CPU_Get_timebase_low( start );