Fix line wrap issues.

Sponsored by:	Netflix
This commit is contained in:
Scott Long 2017-09-15 20:58:52 +00:00
parent 05d70babff
commit 7eed4c1853
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=323629
2 changed files with 8 additions and 8 deletions

View file

@ -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);
}
}

View file

@ -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);
}
}