Fix debugging output. The TDs are linked through the dnext field, not

nexttd.
This commit is contained in:
n_hibma 2000-01-29 18:01:15 +00:00
parent 59db460dbc
commit 7a76a6d4d2

View File

@ -1127,7 +1127,8 @@ ohci_process_done(sc, done)
#ifdef OHCI_DEBUG
if (ohcidebug > 10) {
DPRINTF(("ohci_process_done: TD done:\n"));
ohci_dump_tds(sdone);
for (std = sdone; std; std = std->dnext)
ohci_dump_td(std);
}
#endif