Skip to content

Commit

Permalink
ALSA: usb-audio: Add TLV to M-Audio Fast Track Ultra controls
Browse files Browse the repository at this point in the history
This adds db gain information to M-Audio Fast Track Ultra (8R) devices.

Signed-off-by: Felix Homann <linuxaudio@showlabor.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
showlabor authored and tiwai committed Apr 24, 2012
1 parent 285de9c commit 25ee7ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sound/usb/mixer_quirks.c
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,7 @@ static int snd_maudio_ftu_create_volume_ctls(struct usb_mixer_interface *mixer)
in + 1, out + 1);
err = snd_create_std_mono_ctl(mixer, id, control,
cmask, val_type, name,
NULL);
&snd_usb_mixer_vol_tlv);
if (err < 0)
return err;
}
Expand All @@ -605,7 +605,7 @@ static int snd_maudio_ftu_create_volume_ctls(struct usb_mixer_interface *mixer)
in - 7, out + 1);
err = snd_create_std_mono_ctl(mixer, id, control,
cmask, val_type, name,
NULL);
&snd_usb_mixer_vol_tlv);
if (err < 0)
return err;
}
Expand Down

0 comments on commit 25ee7ef

Please sign in to comment.