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:
parent
9cbbc7902a
commit
f8c77e82c5
|
@ -92,7 +92,7 @@ static void dbgp_mdelay(int ms)
|
|||
int i;
|
||||
while (ms--) {
|
||||
for (i = 0; i < 1000; i++)
|
||||
outb(0x1, 0x80);
|
||||
inb(0x80);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue