svn commit: r336890 - stable/10/sys/dev/sound/pcm

Hans Petter Selasky hselasky at FreeBSD.org
Mon Jul 30 09:28:01 UTC 2018


Author: hselasky
Date: Mon Jul 30 09:28:00 2018
New Revision: 336890
URL: https://svnweb.freebsd.org/changeset/base/336890

Log:
  MFC r336632:
  Update modify counter when setting a mixer control.
  
  PR:		229969

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

Modified: stable/10/sys/dev/sound/pcm/mixer.c
==============================================================================
--- stable/10/sys/dev/sound/pcm/mixer.c	Mon Jul 30 09:25:56 2018	(r336889)
+++ stable/10/sys/dev/sound/pcm/mixer.c	Mon Jul 30 09:28:00 2018	(r336890)
@@ -323,6 +323,7 @@ mixer_set(struct snd_mixer *m, u_int dev, u_int lev)
 	MIXER_SET_LOCK(m, dropmtx);
 
 	m->level[dev] = l | (r << 8);
+	m->modify_counter++;
 
 	return 0;
 }


More information about the svn-src-all mailing list