diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-05-30 23:21:07 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-05-31 08:46:16 +0200 |
commit | 617163fc2580da3d489b6c1bacb6312e0e2aac02 (patch) | |
tree | 892870d48672c8df2006b78d3de87dd8d32f413e /sound/usb | |
parent | 64188cfbe5245d412de2139a3864e4e00b4136f0 (diff) | |
download | linux-617163fc2580da3d489b6c1bacb6312e0e2aac02.tar.bz2 |
ALSA: usb: Fix a typo in Tascam US-16x08 mixer element
A mixer element created in a quirk for Tascam US-16x08 contains a
typo: it should be "EQ MidLow Q" instead of "EQ MidQLow Q".
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=195875
Fixes: d2bb390a2081 ("ALSA: usb-audio: Tascam US-16x08 DSP mixer quirk")
Cc: <stable@vger.kernel.org> # v4.11+
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/mixer_us16x08.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/mixer_us16x08.c b/sound/usb/mixer_us16x08.c index 29d2c9282987..442d8f7998e3 100644 --- a/sound/usb/mixer_us16x08.c +++ b/sound/usb/mixer_us16x08.c @@ -1135,7 +1135,7 @@ static const struct snd_us16x08_control_params eq_controls[] = { .control_id = SND_US16X08_ID_EQLOWMIDWIDTH, .type = USB_MIXER_U8, .num_channels = 16, - .name = "EQ MidQLow Q", + .name = "EQ MidLow Q", }, { /* EQ mid high gain */ .kcontrol_new = &snd_us16x08_eq_gain_ctl, |