git: 3a79c3ac8aa3 - main - sound: add missing modules to snd_driver
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 16 Jan 2024 16:50:07 UTC
The branch main has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=3a79c3ac8aa3c548aab9ad38acc4f480ab9e7a5b
commit 3a79c3ac8aa3c548aab9ad38acc4f480ab9e7a5b
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2024-01-16 16:48:56 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2024-01-16 16:48:56 +0000
sound: add missing modules to snd_driver
While here, remove unnecessary break.
Sponsored by: The FreeBSD Foundation
MFC after: 2 weeks
Reviewed by: imp, emaste
Differential Revision: https://reviews.freebsd.org/D43394
---
sys/dev/sound/driver.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/sys/dev/sound/driver.c b/sys/dev/sound/driver.c
index b7791f5223c9..927941ab3d01 100644
--- a/sys/dev/sound/driver.c
+++ b/sys/dev/sound/driver.c
@@ -43,7 +43,6 @@ snd_modevent(module_t mod, int type, void *data)
break;
default:
return (ENOTSUP);
- break;
}
return 0;
}
@@ -68,6 +67,7 @@ MODULE_DEPEND(snd_driver, snd_envy24ht, 1, 1, 1);
MODULE_DEPEND(snd_driver, snd_es137x, 1, 1, 1);
MODULE_DEPEND(snd_driver, snd_fm801, 1, 1, 1);
MODULE_DEPEND(snd_driver, snd_hda, 1, 1, 1);
+MODULE_DEPEND(snd_driver, snd_hdspe, 1, 1, 1);
MODULE_DEPEND(snd_driver, snd_ich, 1, 1, 1);
MODULE_DEPEND(snd_driver, snd_maestro3, 1, 1, 1);
MODULE_DEPEND(snd_driver, snd_neomagic, 1, 1, 1);
@@ -77,3 +77,4 @@ MODULE_DEPEND(snd_driver, snd_t4dwave, 1, 1, 1);
MODULE_DEPEND(snd_driver, snd_via8233, 1, 1, 1);
MODULE_DEPEND(snd_driver, snd_via82c686, 1, 1, 1);
MODULE_DEPEND(snd_driver, snd_vibes, 1, 1, 1);
+MODULE_DEPEND(snd_driver, snd_uaudio, 1, 1, 1);