[coreboot] r3975 - trunk/coreboot-v2/src/lib

svn at coreboot.org svn at coreboot.org
Fri Mar 6 18:21:24 CET 2009


Author: stepan
Date: 2009-03-06 18:21:23 +0100 (Fri, 06 Mar 2009)
New Revision: 3975

Modified:
   trunk/coreboot-v2/src/lib/usbdebug_direct.c
Log:
use inb instead of outb for delays in usb debug code (trivial)

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



Modified: trunk/coreboot-v2/src/lib/usbdebug_direct.c
===================================================================
--- trunk/coreboot-v2/src/lib/usbdebug_direct.c	2009-03-06 17:20:17 UTC (rev 3974)
+++ trunk/coreboot-v2/src/lib/usbdebug_direct.c	2009-03-06 17:21:23 UTC (rev 3975)
@@ -92,7 +92,7 @@
 	int i;
 	while (ms--) {
 		for (i = 0; i < 1000; i++)
-			outb(0x1, 0x80);
+			inb(0x80);
 	}
 }
 





More information about the coreboot mailing list