summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2013-01-30 16:08:05 +0000
committerhselasky <hselasky@FreeBSD.org>2013-01-30 16:08:05 +0000
commit5fded8d7746ea67571b3e5ad0fb20bdf55bfec28 (patch)
tree49a380788f9a9bea986a2129de6698c972fec41a
parentb7433e15c3ef10d95759121d1e726ea9864da8a3 (diff)
downloadFreeBSD-src-5fded8d7746ea67571b3e5ad0fb20bdf55bfec28.zip
FreeBSD-src-5fded8d7746ea67571b3e5ad0fb20bdf55bfec28.tar.gz
Do not unnecessarily split a string literal, because
splitting it makes it hard to grep. Submitted by: Christoph Mallon
-rw-r--r--sys/dev/usb/controller/xhci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/controller/xhci.c b/sys/dev/usb/controller/xhci.c
index dc4cfe9..4023ecc 100644
--- a/sys/dev/usb/controller/xhci.c
+++ b/sys/dev/usb/controller/xhci.c
@@ -890,8 +890,8 @@ xhci_check_transfer(struct xhci_softc *sc, struct xhci_trb *trb)
*/
if (td->remainder > 0) {
if (td->alt_next == NULL) {
- DPRINTF("short TD has no "
- "alternate next\n");
+ DPRINTF(
+ "short TD has no alternate next\n");
xhci_generic_done(xfer);
break;
}
OpenPOWER on IntegriCloud