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>
Reviewed-on: http://review.coreboot.org/1899
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Tested-by: build bot (Jenkins)
This commit is contained in:
Nico Huber 2012-11-21 16:22:26 +01:00 committed by Patrick Georgi
parent e8a71d34cd
commit 86c686a76e
1 changed files with 1 additions and 1 deletions

View File

@ -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;