diff options
Diffstat (limited to 'sys/dev/usb/uhci.c')
-rw-r--r-- | sys/dev/usb/uhci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index d6b68c6..5ae6070 100644 --- a/sys/dev/usb/uhci.c +++ b/sys/dev/usb/uhci.c @@ -934,7 +934,7 @@ uhci_intr(void *arg) #endif status = UREAD2(sc, UHCI_STS); - if (status == 0) /* The interrupt was not for us. */ + if (status == 0) /* nothing to be done (PCI shared interrupt) */ return (0); #if defined(DIAGNOSTIC) && defined(__NetBSD__) |