git: a2b09fc4b8b3 - stable/14 - sound: Add missing space in dev.pcm.X.mode description
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 29 Apr 2024 10:43:48 UTC
The branch stable/14 has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=a2b09fc4b8b31387bf8901b1347ba0e9fc9daf06
commit a2b09fc4b8b31387bf8901b1347ba0e9fc9daf06
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2024-04-28 19:47:11 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2024-04-29 10:43:31 +0000
sound: Add missing space in dev.pcm.X.mode description
Sponsored by: The FreeBSD Foundation
MFC after: 1 day
Reviewed by: markj, emaste
Differential Revision: https://reviews.freebsd.org/D44990
(cherry picked from commit e56c8996fc437488686e7cdef18258f16c5ea74e)
---
sys/dev/sound/pcm/sound.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/sound/pcm/sound.c b/sys/dev/sound/pcm/sound.c
index 57cbf37005a7..2057c7572ad6 100644
--- a/sys/dev/sound/pcm/sound.c
+++ b/sys/dev/sound/pcm/sound.c
@@ -923,8 +923,8 @@ pcm_sysinit(device_t dev)
SYSCTL_ADD_UINT(device_get_sysctl_ctx(dev),
SYSCTL_CHILDREN(device_get_sysctl_tree(dev)),
OID_AUTO, "mode", CTLFLAG_RD, NULL, mode,
- "mode (1=mixer, 2=play, 4=rec. The values are OR'ed if more than one"
- "mode is supported)");
+ "mode (1=mixer, 2=play, 4=rec. The values are OR'ed if more than "
+ "one mode is supported)");
if (d->flags & SD_F_AUTOVCHAN)
vchan_initsys(dev);
if (d->flags & SD_F_EQ)