diff options
author | Raymond Yau <superquad.vortex2@gmail.com> | 2011-02-20 02:55:14 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-02-20 04:05:29 -0500 |
commit | 01cb7021584c4c70f7c5596ac2147b494a144053 (patch) | |
tree | e16f547947c137a34fc528102fd0c0021d240592 /sound | |
parent | 6ba9256c09b0ab394d0fadbfb86d8f4dfba8846b (diff) |
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')
-rw-r--r-- | sound/pci/au88x0/au88x0_eq.c | 3 |
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) | |||
896 | if ((kcontrol = | 896 | if ((kcontrol = |
897 | snd_ctl_new1(&vortex_eq_kcontrol, vortex)) == NULL) | 897 | snd_ctl_new1(&vortex_eq_kcontrol, vortex)) == NULL) |
898 | return -ENOMEM; | 898 | return -ENOMEM; |
899 | strcpy(kcontrol->id.name, EqBandLabels[i]); | 899 | snprintf(kcontrol->id.name, sizeof(kcontrol->id.name), |
900 | "%s Playback Volume", EqBandLabels[i]); | ||
900 | kcontrol->private_value = i; | 901 | kcontrol->private_value = i; |
901 | if ((err = snd_ctl_add(vortex->card, kcontrol)) < 0) | 902 | if ((err = snd_ctl_add(vortex->card, kcontrol)) < 0) |
902 | return err; | 903 | return err; |