aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/au88x0/au88x0_eq.c
diff options
context:
space:
mode:
authorRaymond Yau <superquad.vortex2@gmail.com>2011-02-20 15:55:14 +0800
committerTakashi Iwai <tiwai@suse.de>2011-02-20 10:05:29 +0100
commit01cb7021584c4c70f7c5596ac2147b494a144053 (patch)
treee16f547947c137a34fc528102fd0c0021d240592 /sound/pci/au88x0/au88x0_eq.c
parentALSA: azt3328: hook up new emulated AC97 on AC97 patch side (diff)
downloadlinux-dev-01cb7021584c4c70f7c5596ac2147b494a144053.tar.xz
linux-dev-01cb7021584c4c70f7c5596ac2147b494a144053.zip
ALSA - au88x0 - add Playback Volume to 10 bands Equalizer Controls
Add " Playback Volume" to 10 bands Equalizer Controls of au88x0 so that alsa-lib won't regard them as "Capture Volume". Signed-off-by: Raymond Yau <superquad.vortex2@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/au88x0/au88x0_eq.c')
-rw-r--r--sound/pci/au88x0/au88x0_eq.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/pci/au88x0/au88x0_eq.c b/sound/pci/au88x0/au88x0_eq.c
index 38602b85874d..278ed8189fca 100644
--- a/sound/pci/au88x0/au88x0_eq.c
+++ b/sound/pci/au88x0/au88x0_eq.c
@@ -896,7 +896,8 @@ static int __devinit vortex_eq_init(vortex_t * vortex)
if ((kcontrol =
snd_ctl_new1(&vortex_eq_kcontrol, vortex)) == NULL)
return -ENOMEM;
- strcpy(kcontrol->id.name, EqBandLabels[i]);
+ snprintf(kcontrol->id.name, sizeof(kcontrol->id.name),
+ "%s Playback Volume", EqBandLabels[i]);
kcontrol->private_value = i;
if ((err = snd_ctl_add(vortex->card, kcontrol)) < 0)
return err;