aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-08-23 01:12:35 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-08-23 01:12:35 +0000
commitdae6dcff3f72a5891031431729187120e9156a73 (patch)
treeeb83e62b2e3329407e8e33bfafc40b1dfda9abbd /sys/dev
parent3b703181e30045be959399bad1c747a834302578 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/usb/uhci.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c
index ff6220aa072b..d6b68c6b9ce1 100644
--- a/sys/dev/usb/uhci.c
+++ b/sys/dev/usb/uhci.c
@@ -934,11 +934,8 @@ uhci_intr(void *arg)
#endif
status = UREAD2(sc, UHCI_STS);
- if (status == 0) { /* The interrupt was not for us. */
- printf("%s: interrupt, but not for us\n",
- USBDEVNAME(sc->sc_bus.bdev));
+ if (status == 0) /* The interrupt was not for us. */
return (0);
- }
#if defined(DIAGNOSTIC) && defined(__NetBSD__)
if (sc->sc_suspend != PWR_RESUME)