summaryrefslogtreecommitdiff
path: root/sys/dev/mps
diff options
context:
space:
mode:
authorScott Long <scottl@FreeBSD.org>2017-09-15 20:58:52 +0000
committerScott Long <scottl@FreeBSD.org>2017-09-15 20:58:52 +0000
commit7eed4c18535846ca0941149140aecd5e7174e1be (patch)
treee6dfff21cde46af3479e91d64e930b23095a5cc8 /sys/dev/mps
parent05d70babff56844226fd0cdca836a85037350c82 (diff)
Notes
Diffstat (limited to 'sys/dev/mps')
-rw-r--r--sys/dev/mps/mps_pci.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/mps/mps_pci.c b/sys/dev/mps/mps_pci.c
index 8dcf246a7359..2e00241d329e 100644
--- a/sys/dev/mps/mps_pci.c
+++ b/sys/dev/mps/mps_pci.c
@@ -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);
}
}