svn commit: r271364 - stable/8/sys/dev/sound/usb

Hans Petter Selasky hselasky at FreeBSD.org
Wed Sep 10 07:20:30 UTC 2014


Author: hselasky
Date: Wed Sep 10 07:20:29 2014
New Revision: 271364
URL: http://svnweb.freebsd.org/changeset/base/271364

Log:
  MFC r271218:
  Update mixer description for FastTrackPro.

Modified:
  stable/8/sys/dev/sound/usb/uaudio.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/dev/   (props changed)
  stable/8/sys/dev/sound/   (props changed)
  stable/8/sys/dev/sound/usb/   (props changed)

Modified: stable/8/sys/dev/sound/usb/uaudio.c
==============================================================================
--- stable/8/sys/dev/sound/usb/uaudio.c	Wed Sep 10 07:19:08 2014	(r271363)
+++ stable/8/sys/dev/sound/usb/uaudio.c	Wed Sep 10 07:20:29 2014	(r271364)
@@ -2730,14 +2730,14 @@ uaudio_mixer_controls_create_ftu(struct 
 
 		uaudio_mixer_add_ctl(sc, &MIX(sc));
 
-		MIX(sc).wValue[0] = MAKE_WORD(9, chy + 1);
+		MIX(sc).wValue[0] = MAKE_WORD(9, chy + 1 + 8);
 		MIX(sc).type = MIX_SIGNED_16;
 		MIX(sc).ctl = SOUND_MIXER_NRDEVICES;
 		MIX(sc).name = "effect_send";
 		MIX(sc).nchan = 1;
 		MIX(sc).update[0] = 1;
 		snprintf(MIX(sc).desc, sizeof(MIX(sc).desc),
-		    "Effect Send DIn%d Volume", chy + 1 + 8);
+		    "Effect Send DIn%d Volume", chy + 1);
 
 		uaudio_mixer_add_ctl(sc, &MIX(sc));
 	}


More information about the svn-src-stable-8 mailing list