Inverted error messages.

Submitted by:	John R. LoVerso <john@loverso.southborough.ma.us>
This commit is contained in:
n_hibma 2000-06-15 15:23:12 +00:00
parent 6c65f3af5b
commit 3bacc3e3a8

View File

@ -988,12 +988,12 @@ uhci_intr(arg)
}
if (status & UHCI_STS_HSE) {
ack |= UHCI_STS_HSE;
printf("%s: host controller process error\n",
USBDEVNAME(sc->sc_bus.bdev));
printf("%s: host system error\n", USBDEVNAME(sc->sc_bus.bdev));
}
if (status & UHCI_STS_HCPE) {
ack |= UHCI_STS_HCPE;
printf("%s: host system error\n", USBDEVNAME(sc->sc_bus.bdev));
printf("%s: host controller process error\n",
USBDEVNAME(sc->sc_bus.bdev));
}
if (status & UHCI_STS_HCH) {
/* no acknowledge needed */