From cc433e04b16c533ef149662c37a687ef30f2eb32 Mon Sep 17 00:00:00 2001 From: Nick Hibma Date: Thu, 15 Jun 2000 15:23:12 +0000 Subject: Inverted error messages. Submitted by: John R. LoVerso --- sys/dev/usb/uhci.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index f26657014e52..25b3d2bf918b 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 */ -- cgit v1.3