forked from Imagelibrary/rtems
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:
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user