diff options
author | peter <peter@FreeBSD.org> | 2001-08-23 01:16:10 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-08-23 01:16:10 +0000 |
commit | ae0e5e244b752842954c7c1de8659c07cbc7c334 (patch) | |
tree | e319e3bacdfcc105f4df2969d27d0bf8a7d47219 /sys/dev/usb/uhci.c | |
parent | 8d577cb279b5c91d34d6670b0f95976536d0d67c (diff) | |
download | FreeBSD-src-ae0e5e244b752842954c7c1de8659c07cbc7c334.zip FreeBSD-src-ae0e5e244b752842954c7c1de8659c07cbc7c334.tar.gz |
Do not printf when we get called as a result of a pci shared interrupt,
and add a comment to that effect.
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__) |