Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Jul 2026 15:52:57 +0000
From:      Christos Margiolis <christos@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 2a2705a637cd - main - sound: Add missing newline in dsp_make_dev()'s device_printf()
Message-ID:  <6a677ed9.19734.58f08bd5@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by christos:

URL: https://cgit.FreeBSD.org/src/commit/?id=2a2705a637cd67d0add7fe795fef9b7a722d76bd

commit 2a2705a637cd67d0add7fe795fef9b7a722d76bd
Author:     Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2026-07-27 15:52:09 +0000
Commit:     Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2026-07-27 15:52:09 +0000

    sound: Add missing newline in dsp_make_dev()'s device_printf()
    
    Sponsored by:   The FreeBSD Foundation
    MFC after:      1 week
---
 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 8cc0884647a3..5560778fdf92 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);
 	}


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a677ed9.19734.58f08bd5>