Nico Huber (nico.huber@secunet.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1899
-gerrit
commit 983586c8c5496b76a250e7af2ee64026afff6e60 Author: Nico Huber nico.huber@secunet.com Date: Wed Nov 21 16:22:26 2012 +0100
libpayload: Reduce error output from EHCI
Stalled transfers are not fatal, so don't spew on the console on every tiny failure.
Change-Id: I175c1e83a6af09c1abbd43d045ed6dbf0c79f871 Signed-off-by: Nico Huber nico.huber@secunet.com --- payloads/libpayload/drivers/usb/ehci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/payloads/libpayload/drivers/usb/ehci.c b/payloads/libpayload/drivers/usb/ehci.c index 5f70b64..4ff137e 100644 --- a/payloads/libpayload/drivers/usb/ehci.c +++ b/payloads/libpayload/drivers/usb/ehci.c @@ -211,7 +211,7 @@ static int wait_for_tds(qtd_t *head) return 1; } if (cur->token & QTD_HALTED) { - printf("ERROR with packet\n"); + usb_debug("ERROR with packet\n"); dump_td(virt_to_phys(cur)); usb_debug("-----------------\n"); return 1;