use inb instead of outb for delays in usb debug code (trivial)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3975 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2009-03-06 17:21:23 +00:00 committed by Stefan Reinauer
parent 9cbbc7902a
commit f8c77e82c5
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ static void dbgp_mdelay(int ms)
int i; int i;
while (ms--) { while (ms--) {
for (i = 0; i < 1000; i++) for (i = 0; i < 1000; i++)
outb(0x1, 0x80); inb(0x80);
} }
} }