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

nexttd.
This commit is contained in:
Nick Hibma 2000-01-29 18:01:15 +00:00
parent af88e209a2
commit c50e6e7a39
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=56866

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