From 7a76a6d4d239205303176878441dd46d265fb50c Mon Sep 17 00:00:00 2001 From: n_hibma Date: Sat, 29 Jan 2000 18:01:15 +0000 Subject: Fix debugging output. The TDs are linked through the dnext field, not nexttd. --- sys/dev/usb/ohci.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/dev/usb/ohci.c b/sys/dev/usb/ohci.c index 9591726..131e306 100644 --- a/sys/dev/usb/ohci.c +++ b/sys/dev/usb/ohci.c @@ -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 -- cgit v1.1