summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorSasha Khapyorsky <sashak@smlink.com>2005-09-13 11:23:13 +0200
committerJaroslav Kysela <perex@suse.cz>2005-10-07 14:45:27 +0200
commit27bcaa693c866b9bccf94ee5b60eaf705e90c341 (patch)
tree67359aed14cadc6e740eeda468fbed5aeee2cda2 /sound
parent0444e2aca9ac89f571f0bb7781d12818719e4baf (diff)
downloadlinux-0-day-27bcaa693c866b9bccf94ee5b60eaf705e90c341.tar.gz
linux-0-day-27bcaa693c866b9bccf94ee5b60eaf705e90c341.tar.xz
[ALSA] no templated index for si3036 modem controls
AC97 Codec No index is templated for si3036 modem controls. Signed-off-by: Sasha Khapyorsky <sashak@smlink.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/ac97/ac97_patch.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sound/pci/ac97/ac97_patch.c b/sound/pci/ac97/ac97_patch.c
index 045ddc743edca..0238cc65d32af 100644
--- a/sound/pci/ac97/ac97_patch.c
+++ b/sound/pci/ac97/ac97_patch.c
@@ -2752,7 +2752,11 @@ AC97_DOUBLE("Modem Speaker Volume", 0x5c, 14, 12, 3, 1)
static int patch_si3036_specific(ac97_t * ac97)
{
- return patch_build_controls(ac97, snd_ac97_controls_si3036, ARRAY_SIZE(snd_ac97_controls_si3036));
+ int idx, err;
+ for (idx = 0; idx < ARRAY_SIZE(snd_ac97_controls_si3036); idx++)
+ if ((err = snd_ctl_add(ac97->bus->card, snd_ctl_new1(&snd_ac97_controls_si3036[idx], ac97))) < 0)
+ return err;
+ return 0;
}
static struct snd_ac97_build_ops patch_si3036_ops = {