summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/uhci.c
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2001-08-23 01:12:35 +0000
committerpeter <peter@FreeBSD.org>2001-08-23 01:12:35 +0000
commit8d577cb279b5c91d34d6670b0f95976536d0d67c (patch)
treeeb83e62b2e3329407e8e33bfafc40b1dfda9abbd /sys/dev/usb/uhci.c
parent06f57e01ae212598a886c89e3f096c31719becb7 (diff)
downloadFreeBSD-src-8d577cb279b5c91d34d6670b0f95976536d0d67c.zip
FreeBSD-src-8d577cb279b5c91d34d6670b0f95976536d0d67c.tar.gz
Revert part of the last commit, as suggested by Nick. This is expected,
it is part of the way PCI shared interrupts work.
Diffstat (limited to 'sys/dev/usb/uhci.c')
-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 ff6220a..d6b68c6 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)
OpenPOWER on IntegriCloud