diff options
author | iedowse <iedowse@FreeBSD.org> | 2006-03-18 17:57:34 +0000 |
---|---|---|
committer | iedowse <iedowse@FreeBSD.org> | 2006-03-18 17:57:34 +0000 |
commit | d4f801f4ab01a2c0d88e59ddabc9757533800554 (patch) | |
tree | 21c6ab38ff498443a45394e5bb3d940559fec91d /sys | |
parent | 86d485cdba2c766e9beb68734e9d7ba57123fa1d (diff) | |
download | FreeBSD-src-d4f801f4ab01a2c0d88e59ddabc9757533800554.zip FreeBSD-src-d4f801f4ab01a2c0d88e59ddabc9757533800554.tar.gz |
Oops - fix the build in the !USB_DEBUG case.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/ehci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/usb/ehci.c b/sys/dev/usb/ehci.c index b6eab1d..e14ee41 100644 --- a/sys/dev/usb/ehci.c +++ b/sys/dev/usb/ehci.c @@ -763,7 +763,9 @@ void ehci_idone(struct ehci_xfer *ex) { usbd_xfer_handle xfer = &ex->xfer; +#ifdef USB_DEBUG struct ehci_pipe *epipe = (struct ehci_pipe *)xfer->pipe; +#endif ehci_soft_qtd_t *sqtd, *lsqtd; u_int32_t status = 0, nstatus = 0; int actlen, cerr; |