From c50e6e7a39bc9bedaa0e9f12f66a422c531d5a4b Mon Sep 17 00:00:00 2001 From: Nick Hibma Date: Sat, 29 Jan 2000 18:01:15 +0000 Subject: [PATCH] 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 9591726a121c..131e3069eb43 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