1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-23 16:01:42 +00:00

Revert part of the last commit, as suggested by Nick. This is expected,

it is part of the way PCI shared interrupts work.
This commit is contained in:
Peter Wemm 2001-08-23 01:12:35 +00:00
parent 3b703181e3
commit dae6dcff3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=82155

View File

@ -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)