diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-09-06 08:29:59 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-09-06 08:29:59 +0000 |
commit | bcd458df80fa646874d3ab2b6feeb21f03c71da2 (patch) | |
tree | a96d498252f54cf563ca4db57e92ff02f831602d /sys/dev/usb/usbdi.c | |
parent | 8536740fa27f21a826858c04e32342a745912d51 (diff) |
Fix build with USB_DEBUG defined, pipes don't have refcounters anymore.
From Nils Frohberg.
Diffstat (limited to 'sys/dev/usb/usbdi.c')
-rw-r--r-- | sys/dev/usb/usbdi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/usbdi.c b/sys/dev/usb/usbdi.c index ba7477eb7d7..3e8adcc587b 100644 --- a/sys/dev/usb/usbdi.c +++ b/sys/dev/usb/usbdi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: usbdi.c,v 1.57 2013/08/13 09:26:04 mpi Exp $ */ +/* $OpenBSD: usbdi.c,v 1.58 2013/09/06 08:29:58 mpi Exp $ */ /* $NetBSD: usbdi.c,v 1.103 2002/09/27 15:37:38 provos Exp $ */ /* $FreeBSD: src/sys/dev/usb/usbdi.c,v 1.28 1999/11/17 22:33:49 n_hibma Exp $ */ @@ -177,8 +177,8 @@ usbd_dump_pipe(struct usbd_pipe *pipe) usbd_dump_iface(pipe->iface); usbd_dump_device(pipe->device); usbd_dump_endpoint(pipe->endpoint); - printf(" (usbd_dump_pipe:)\n refcnt=%d running=%d aborting=%d\n", - pipe->refcnt, pipe->running, pipe->aborting); + printf(" (usbd_dump_pipe:)\n running=%d aborting=%d\n", + pipe->running, pipe->aborting); printf(" intrxfer=%p, repeat=%d, interval=%d\n", pipe->intrxfer, pipe->repeat, pipe->interval); } |