Module Name: src
Committed By: nat
Date: Thu May 17 11:35:31 UTC 2018
Modified Files:
src/sys/dev: audio.c
Log Message:
Fix a typo with sc_out/inports when setting the hardware recording gain on the
mix ring. Found by mrg@
XXX pullup-8
To generate a diff of this commit:
cvs rdiff -u -r1.455 -r1.456 src/sys/dev/audio.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/audio.c
diff -u src/sys/dev/audio.c:1.455 src/sys/dev/audio.c:1.456
--- src/sys/dev/audio.c:1.455 Tue May 15 10:23:03 2018
+++ src/sys/dev/audio.c Thu May 17 11:35:31 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: audio.c,v 1.455 2018/05/15 10:23:03 nat Exp $ */
+/* $NetBSD: audio.c,v 1.456 2018/05/17 11:35:31 nat Exp $ */
/*-
* Copyright (c) 2016 Nathanial Sloss <[email protected]>
@@ -148,7 +148,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.455 2018/05/15 10:23:03 nat Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.456 2018/05/17 11:35:31 nat Exp $");
#ifdef _KERNEL_OPT
#include "audio.h"
@@ -4766,8 +4766,8 @@ done:
if (SPECIFIED(r->gain)) {
if (!sc->sc_usemixer || vc == &sc->sc_mixring) {
- au_get_gain(sc, &sc->sc_outports, &gain, &balance);
- error = au_set_gain(sc, &sc->sc_outports, r->gain, balance);
+ au_get_gain(sc, &sc->sc_inports, &gain, &balance);
+ error = au_set_gain(sc, &sc->sc_inports, r->gain, balance);
if (error)
goto cleanup;
} else