svn commit: r246126 - head/sys/dev/usb/controller

Hans Petter Selasky hselasky at FreeBSD.org
Wed Jan 30 16:08:06 UTC 2013


Author: hselasky
Date: Wed Jan 30 16:08:05 2013
New Revision: 246126
URL: http://svnweb.freebsd.org/changeset/base/246126

Log:
  Do not unnecessarily split a string literal, because
  splitting it makes it hard to grep.
  
  Submitted by:	Christoph Mallon

Modified:
  head/sys/dev/usb/controller/xhci.c

Modified: head/sys/dev/usb/controller/xhci.c
==============================================================================
--- head/sys/dev/usb/controller/xhci.c	Wed Jan 30 16:05:54 2013	(r246125)
+++ head/sys/dev/usb/controller/xhci.c	Wed Jan 30 16:08:05 2013	(r246126)
@@ -890,8 +890,8 @@ xhci_check_transfer(struct xhci_softc *s
 			 */
 			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;
 				}


More information about the svn-src-all mailing list