From be55f9a1f269842622ef0f041a6b597344eda490 Mon Sep 17 00:00:00 2001 From: Josef Karthauser Date: Sun, 7 Apr 2002 13:20:26 +0000 Subject: [PATCH] MFNetBSD: revision 1.67 date: 2001/11/21 13:44:47; author: augustss; state: Exp; lines: +3 -1 Wrap dump routine prototypes in #ifdef USB_DEBUG --- sys/dev/usb/usbdivar.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/usb/usbdivar.h b/sys/dev/usb/usbdivar.h index 26329dc58d24..0142f5f9f291 100644 --- a/sys/dev/usb/usbdivar.h +++ b/sys/dev/usb/usbdivar.h @@ -1,4 +1,4 @@ -/* $NetBSD: usbdivar.h,v 1.66 2001/11/20 13:48:04 augustss Exp $ */ +/* $NetBSD: usbdivar.h,v 1.67 2001/11/21 13:44:47 augustss Exp $ */ /* $FreeBSD$ */ /* @@ -224,11 +224,13 @@ struct usbd_xfer { void usbd_init(void); void usbd_finish(void); +#ifdef USB_DEBUG void usbd_dump_iface(struct usbd_interface *iface); void usbd_dump_device(struct usbd_device *dev); void usbd_dump_endpoint(struct usbd_endpoint *endp); void usbd_dump_queue(usbd_pipe_handle pipe); void usbd_dump_pipe(usbd_pipe_handle pipe); +#endif /* Routines from usb_subr.c */ int usbctlprint(void *, const char *);