summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/sparc/erc32/include/bsp.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 05:17:45 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-03-31 05:17:45 +0000
commit1be1e913564b73bf50ce1aa58c003e564ddae83a (patch)
tree1caa2969efc333278661150cbfa7e13293aa06d8 /c/src/lib/libbsp/sparc/erc32/include/bsp.h
parent2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-1be1e913564b73bf50ce1aa58c003e564ddae83a.tar.bz2
2004-03-31 Ralf Corsepius <ralf_corsepius@rtems.org>
* clock/ckinit.c, console/console.c, console/debugputs.c, erc32sonic/erc32sonic.c, include/bsp.h, include/erc32.h, startup/setvec.c, startup/spurious.c, timer/timer.c: Convert to using c99 fixed size types.
Diffstat (limited to 'c/src/lib/libbsp/sparc/erc32/include/bsp.h')
-rw-r--r--c/src/lib/libbsp/sparc/erc32/include/bsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/sparc/erc32/include/bsp.h b/c/src/lib/libbsp/sparc/erc32/include/bsp.h
index 3b9d671a5e..da4803d4c2 100644
--- a/c/src/lib/libbsp/sparc/erc32/include/bsp.h
+++ b/c/src/lib/libbsp/sparc/erc32/include/bsp.h
@@ -131,7 +131,7 @@ extern int rtems_erc32_sonic_driver_attach (struct rtems_bsdnet_ifconfig *config
* This is very dependent on the clock speed of the target.
*/
-extern void Clock_delay(rtems_unsigned32 microseconds);
+extern void Clock_delay(uint32_t microseconds);
#define delay( microseconds ) Clock_delay(microseconds)