libpayload: Another usb fix
Change-Id: I91b18fadbf17562f8b48e233631653f2a18c037c Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Reviewed-on: http://review.coreboot.org/2063 Tested-by: build bot (Jenkins) Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
This commit is contained in:
parent
e09f7ef00a
commit
69e3de3393
|
@ -107,7 +107,7 @@ dump_ed (ed_t *cur)
|
||||||
usb_debug("|:::::::::::::::::: OHCI TD CHAIN ::::::::::::::::::|\n");
|
usb_debug("|:::::::::::::::::: OHCI TD CHAIN ::::::::::::::::::|\n");
|
||||||
while (virt_to_phys(tmp_td) != (cur->tail_pointer & ~0xFUL))
|
while (virt_to_phys(tmp_td) != (cur->tail_pointer & ~0xFUL))
|
||||||
{
|
{
|
||||||
dump_td(tmp_td, 1);
|
dump_td(tmp_td);
|
||||||
tmp_td = (td_t *)phys_to_virt((tmp_td->next_td & ~0xFUL));
|
tmp_td = (td_t *)phys_to_virt((tmp_td->next_td & ~0xFUL));
|
||||||
}
|
}
|
||||||
usb_debug("|:::::::::::::::: EOF OHCI TD CHAIN ::::::::::::::::|\n");
|
usb_debug("|:::::::::::::::: EOF OHCI TD CHAIN ::::::::::::::::|\n");
|
||||||
|
|
Loading…
Reference in New Issue