diff options
author | Raymond Yau <superquad.vortex2@gmail.com> | 2011-02-20 15:55:14 +0800 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-02-20 10:05:29 +0100 |
commit | 01cb7021584c4c70f7c5596ac2147b494a144053 (patch) | |
tree | e16f547947c137a34fc528102fd0c0021d240592 /sound | |
parent | 6ba9256c09b0ab394d0fadbfb86d8f4dfba8846b (diff) | |
download | op-kernel-dev-01cb7021584c4c70f7c5596ac2147b494a144053.zip op-kernel-dev-01cb7021584c4c70f7c5596ac2147b494a144053.tar.gz |
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 38602b8..278ed81 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; |