diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-04-17 08:37:18 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-04-17 08:37:18 +0000 |
commit | aeba92ab5b0afd1464d6b1a275b5f5b00b351b32 (patch) | |
tree | 225fbff67fc05e70507ac6ef7b3af32f00bac6f8 /src/pc80/udelay_io.c | |
parent | 56c51bd120a935e64cfd96d8ad71c9d1f7aab323 (diff) | |
download | coreboot-aeba92ab5b0afd1464d6b1a275b5f5b00b351b32.tar.xz |
Add VIA CX700 support, plus VIA vt8454c reference board support.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4126 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/pc80/udelay_io.c')
-rw-r--r-- | src/pc80/udelay_io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pc80/udelay_io.c b/src/pc80/udelay_io.c index a67b5a1986..7a5320e370 100644 --- a/src/pc80/udelay_io.c +++ b/src/pc80/udelay_io.c @@ -1,6 +1,6 @@ #include <arch/io.h> -void udelay(int usecs) +void udelay(unsigned usecs) { int i; for(i = 0; i < usecs; i++) |