git: cda2abf4f137 - stable/15 - sound: Add missing newline in dsp_make_dev()'s device_printf()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 11 Aug 2026 18:24:28 UTC
The branch stable/15 has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=cda2abf4f137f4570c940d9b2221ccb8230e0b20
commit cda2abf4f137f4570c940d9b2221ccb8230e0b20
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2026-07-27 15:52:09 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2026-08-11 18:24:04 +0000
sound: Add missing newline in dsp_make_dev()'s device_printf()
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
(cherry picked from commit 2a2705a637cd67d0add7fe795fef9b7a722d76bd)
---
sys/dev/sound/pcm/dsp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/sound/pcm/dsp.c b/sys/dev/sound/pcm/dsp.c
index 72dbbf055066..2f0091f67ac1 100644
--- a/sys/dev/sound/pcm/dsp.c
+++ b/sys/dev/sound/pcm/dsp.c
@@ -146,7 +146,7 @@ dsp_make_dev(device_t dev)
devargs.mda_si_drv1 = sc;
err = make_dev_s(&devargs, &sc->dsp_dev, "dsp%d", unit);
if (err != 0) {
- device_printf(dev, "failed to create dsp%d: error %d",
+ device_printf(dev, "failed to create dsp%d: error %d\n",
unit, err);
return (err);
}