svn commit: r359883 - stable/11/sys/dev/sound/pcm

Hans Petter Selasky hselasky at FreeBSD.org
Mon Apr 13 16:29:35 UTC 2020


Author: hselasky
Date: Mon Apr 13 16:29:35 2020
New Revision: 359883
URL: https://svnweb.freebsd.org/changeset/base/359883

Log:
  MFC r359356:
  Change default microphone level from 0 to 25.
  
  Discussed with:	Horse Ma <Shichun.Ma at dell.com>
  Sponsored by:	Mellanox Technologies

Modified:
  stable/11/sys/dev/sound/pcm/mixer.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/sound/pcm/mixer.c
==============================================================================
--- stable/11/sys/dev/sound/pcm/mixer.c	Mon Apr 13 16:29:03 2020	(r359882)
+++ stable/11/sys/dev/sound/pcm/mixer.c	Mon Apr 13 16:29:35 2020	(r359883)
@@ -81,7 +81,7 @@ static u_int16_t snd_mixerdefaults[SOUND_MIXER_NRDEVIC
 	[SOUND_MIXER_PCM]	= 75,
 	[SOUND_MIXER_SPEAKER]	= 75,
 	[SOUND_MIXER_LINE]	= 75,
-	[SOUND_MIXER_MIC] 	= 0,
+	[SOUND_MIXER_MIC] 	= 25,
 	[SOUND_MIXER_CD]	= 75,
 	[SOUND_MIXER_IGAIN]	= 0,
 	[SOUND_MIXER_LINE1]	= 75,


More information about the svn-src-all mailing list