summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/uhci.c
diff options
context:
space:
mode:
authorn_hibma <n_hibma@FreeBSD.org>2000-06-15 15:23:12 +0000
committern_hibma <n_hibma@FreeBSD.org>2000-06-15 15:23:12 +0000
commit3bacc3e3a8ed35a82accd5d18507a17931e26835 (patch)
tree868f641d9e52189ff17268466fefea88552b27cf /sys/dev/usb/uhci.c
parent6c65f3af5b06c01193a817a71094b83ba676edb8 (diff)
downloadFreeBSD-src-3bacc3e3a8ed35a82accd5d18507a17931e26835.zip
FreeBSD-src-3bacc3e3a8ed35a82accd5d18507a17931e26835.tar.gz
Inverted error messages.
Submitted by: John R. LoVerso <john@loverso.southborough.ma.us>
Diffstat (limited to 'sys/dev/usb/uhci.c')
-rw-r--r--sys/dev/usb/uhci.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c
index f266570..25b3d2b 100644
--- a/sys/dev/usb/uhci.c
+++ b/sys/dev/usb/uhci.c
@@ -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 */
OpenPOWER on IntegriCloud