From 8118b15cf02ea2cebe5de9dd28a7860f6ac60767 Mon Sep 17 00:00:00 2001 From: hselasky Date: Fri, 31 Oct 2014 07:38:49 +0000 Subject: MFC r269569: Remove unused defines. Fix some device_printf's that were missing '\n' at the end or had spelling errors. PR: 145319 --- sys/dev/usb/controller/ehci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/usb/controller') diff --git a/sys/dev/usb/controller/ehci.c b/sys/dev/usb/controller/ehci.c index e3a9897..5ed1e94 100644 --- a/sys/dev/usb/controller/ehci.c +++ b/sys/dev/usb/controller/ehci.c @@ -215,7 +215,7 @@ ehci_reset(ehci_softc_t *sc) return (0); } } - device_printf(sc->sc_bus.bdev, "Reset timeout\n"); + device_printf(sc->sc_bus.bdev, "reset timeout\n"); return (USB_ERR_IOERROR); } @@ -290,7 +290,7 @@ ehci_init_sub(struct ehci_softc *sc) } } if (hcr) { - device_printf(sc->sc_bus.bdev, "Run timeout\n"); + device_printf(sc->sc_bus.bdev, "run timeout\n"); return (USB_ERR_IOERROR); } return (USB_ERR_NORMAL_COMPLETION); -- cgit v1.1