diff options
Diffstat (limited to 'sound/pci/au88x0/au88x0_eq.c')
-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; |