aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-07-07 03:05:07 -0400
committerTakashi Iwai <tiwai@suse.de>2009-07-07 03:05:07 -0400
commitb4dabfc452a1011882983db9e464f8ee1e3c01e6 (patch)
treeedffbd6b3f90ad9f05f7a393516ddad7657a7286 /sound
parented208255e700073c34b0ef8d2045ac030ac28971 (diff)
ALSA: hda - Fix the speaker volume control name
Increase the name string buffer size so that "Surround Speaker Playback Volume" won't be truncated. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_cirrus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_cirrus.c b/sound/pci/hda/patch_cirrus.c
index 12173448009..54a7dc8345a 100644
--- a/sound/pci/hda/patch_cirrus.c
+++ b/sound/pci/hda/patch_cirrus.c
@@ -497,7 +497,7 @@ static const char *dir_sfx[2] = { "Playback", "Capture" };
497static int add_mute(struct hda_codec *codec, const char *name, int index, 497static int add_mute(struct hda_codec *codec, const char *name, int index,
498 unsigned int pval, int dir, struct snd_kcontrol **kctlp) 498 unsigned int pval, int dir, struct snd_kcontrol **kctlp)
499{ 499{
500 char tmp[32]; 500 char tmp[44];
501 struct snd_kcontrol_new knew = 501 struct snd_kcontrol_new knew =
502 HDA_CODEC_MUTE_IDX(tmp, index, 0, 0, HDA_OUTPUT); 502 HDA_CODEC_MUTE_IDX(tmp, index, 0, 0, HDA_OUTPUT);
503 knew.private_value = pval; 503 knew.private_value = pval;