summaryrefslogtreecommitdiff
path: root/sys/dev/usb
diff options
context:
space:
mode:
authoraugustss <augustss@NetBSD.org>2000-05-30 16:56:54 +0000
committeraugustss <augustss@NetBSD.org>2000-05-30 16:56:54 +0000
commit382a7af237f2e8e5e9d7bdcb82eef9c262e823c1 (patch)
treef303d28e2422a9cc6cd1806df092eb225e78bc02 /sys/dev/usb
parentfadd7e1882cce1d545dbda63e6f292b564ad2bce (diff)
Don't print anything when detecting resume.
Diffstat (limited to 'sys/dev/usb')
-rw-r--r--sys/dev/usb/uhci.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c
index 2d392ff572b..4baa7dc23ea 100644
--- a/sys/dev/usb/uhci.c
+++ b/sys/dev/usb/uhci.c
@@ -1,4 +1,4 @@
-/* $NetBSD: uhci.c,v 1.117 2000/05/30 09:26:06 augustss Exp $ */
+/* $NetBSD: uhci.c,v 1.118 2000/05/30 16:56:54 augustss Exp $ */
/* $FreeBSD: src/sys/dev/usb/uhci.c,v 1.33 1999/11/17 22:33:41 n_hibma Exp $ */
/*
@@ -1064,7 +1064,9 @@ uhci_intr(arg)
ack |= UHCI_STS_USBEI;
if (status & UHCI_STS_RD) {
ack |= UHCI_STS_RD;
+#ifdef UHCI_DEBUG
printf("%s: resume detect\n", USBDEVNAME(sc->sc_bus.bdev));
+#endif
}
if (status & UHCI_STS_HSE) {
ack |= UHCI_STS_HSE;