git: 1490193fb053 - stable/15 - snd_dummy: Bump primary channel count
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 21 Sep 2026 11:05:35 UTC
The branch stable/15 has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=1490193fb0537141a05bd6a58837d1b6cec41bcd
commit 1490193fb0537141a05bd6a58837d1b6cec41bcd
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2026-09-07 13:04:22 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2026-09-21 11:04:08 +0000
snd_dummy: Bump primary channel count
Makes it easier to test scenarios involving more than 1 primary channels
per direction.
Sponsored by: The FreeBSD Foundation
MFC after: 2 weeks
Reviewed by: markj
Differential Revision: https://reviews.freebsd.org/D59085
(cherry picked from commit 358fe149f591028945a8e5a51dff9121a2358c85)
---
sys/dev/sound/dummy.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/sound/dummy.c b/sys/dev/sound/dummy.c
index 7390ba9f467f..5791347c59df 100644
--- a/sys/dev/sound/dummy.c
+++ b/sys/dev/sound/dummy.c
@@ -45,8 +45,8 @@
#include <mixer_if.h>
#include <mpufoi_if.h>
-#define DUMMY_NPCHAN 1
-#define DUMMY_NRCHAN 1
+#define DUMMY_NPCHAN 2
+#define DUMMY_NRCHAN 2
#define DUMMY_NCHAN (DUMMY_NPCHAN + DUMMY_NRCHAN)
struct dummy_chan {