diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2001-08-23 01:12:35 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2001-08-23 01:12:35 +0000 |
| commit | dae6dcff3f72a5891031431729187120e9156a73 (patch) | |
| tree | eb83e62b2e3329407e8e33bfafc40b1dfda9abbd /sys/dev | |
| parent | 3b703181e30045be959399bad1c747a834302578 (diff) | |
Notes
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/usb/uhci.c | 5 |
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) |
