svn commit: r323629 - in head/sys/dev: mpr mps

Scott Long scottl at FreeBSD.org
Fri Sep 15 20:58:53 UTC 2017


Author: scottl
Date: Fri Sep 15 20:58:52 2017
New Revision: 323629
URL: https://svnweb.freebsd.org/changeset/base/323629

Log:
  Fix line wrap issues.
  
  Sponsored by:	Netflix

Modified:
  head/sys/dev/mpr/mpr_pci.c
  head/sys/dev/mps/mps_pci.c

Modified: head/sys/dev/mpr/mpr_pci.c
==============================================================================
--- head/sys/dev/mpr/mpr_pci.c	Fri Sep 15 20:46:51 2017	(r323628)
+++ head/sys/dev/mpr/mpr_pci.c	Fri Sep 15 20:58:52 2017	(r323629)
@@ -269,8 +269,8 @@ mpr_pci_alloc_interrupts(struct mpr_softc *sc)
 		msgs = min(msgs, MPR_MSIX_MAX);
 		msgs = min(msgs, 1);	/* XXX */
 		if (msgs != 0) {
-			mpr_dprint(sc, MPR_INIT, "Attempting to allocate %d MSI-X "
-			    "messages\n", msgs);
+			mpr_dprint(sc, MPR_INIT, "Attempting to allocate %d "
+			    "MSI-X messages\n", msgs);
 			error = mpr_alloc_msix(sc, msgs);
 		}
 	}
@@ -279,8 +279,8 @@ mpr_pci_alloc_interrupts(struct mpr_softc *sc)
 		mpr_dprint(sc, MPR_INIT, "Counted %d MSI messages\n", msgs);
 		msgs = min(msgs, MPR_MSI_MAX);
 		if (msgs != 0) {
-			mpr_dprint(sc, MPR_INIT, "Attempting to allocated %d MSI "
-			    "messages\n", MPR_MSI_MAX);
+			mpr_dprint(sc, MPR_INIT, "Attempting to allocated %d "
+			    "MSI messages\n", MPR_MSI_MAX);
 			error = mpr_alloc_msi(sc, MPR_MSI_MAX);
 		}
 	}

Modified: head/sys/dev/mps/mps_pci.c
==============================================================================
--- head/sys/dev/mps/mps_pci.c	Fri Sep 15 20:46:51 2017	(r323628)
+++ head/sys/dev/mps/mps_pci.c	Fri Sep 15 20:58:52 2017	(r323629)
@@ -254,8 +254,8 @@ mps_pci_alloc_interrupts(struct mps_softc *sc)
 		msgs = min(msgs, MPS_MSIX_MAX);
 		msgs = min(msgs, 1);	/* XXX */
 		if (msgs != 0) {
-			mps_dprint(sc, MPS_INIT, "Attempting to allocate %d MSI-X "
-			    "messages\n", msgs);
+			mps_dprint(sc, MPS_INIT, "Attempting to allocate %d "
+			    "MSI-X messages\n", msgs);
 			error = mps_alloc_msix(sc, msgs);
 		}
 	}
@@ -264,8 +264,8 @@ mps_pci_alloc_interrupts(struct mps_softc *sc)
 		mps_dprint(sc, MPS_INIT, "Counted %d MSI messages\n", msgs);
 		msgs = min(msgs, MPS_MSI_MAX);
 		if (msgs != 0) {
-			mps_dprint(sc, MPS_INIT, "Attempting to allocate %d MSI "
-			    "messages\n", MPS_MSI_MAX);
+			mps_dprint(sc, MPS_INIT, "Attempting to allocate %d "
+			    "MSI messages\n", MPS_MSI_MAX);
 			error = mps_alloc_msi(sc, MPS_MSI_MAX);
 		}
 	}


More information about the svn-src-head mailing list