diff options
Diffstat (limited to 'drivers/usb/host/uhci-debug.c')
-rw-r--r-- | drivers/usb/host/uhci-debug.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/host/uhci-debug.c b/drivers/usb/host/uhci-debug.c index 3faccbd68547..6814783adf91 100644 --- a/drivers/usb/host/uhci-debug.c +++ b/drivers/usb/host/uhci-debug.c | |||
@@ -189,6 +189,11 @@ static int uhci_show_qh(struct uhci_qh *qh, char *buf, int len, int space) | |||
189 | space, "", nurbs); | 189 | space, "", nurbs); |
190 | } | 190 | } |
191 | 191 | ||
192 | if (qh->udev) { | ||
193 | out += sprintf(out, "%*s Dummy TD\n", space, ""); | ||
194 | out += uhci_show_td(qh->dummy_td, out, len - (out - buf), 0); | ||
195 | } | ||
196 | |||
192 | return out - buf; | 197 | return out - buf; |
193 | } | 198 | } |
194 | 199 | ||