diff options
author | Takashi Iwai <tiwai@suse.de> | 2010-04-14 14:33:57 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-04-14 14:35:11 +0200 |
commit | b331439dfd41dc813b3557ca5927a3a644f35792 (patch) | |
tree | 0a5ffe68fe93b4dec529074f6a700debccf3ba2b /sound | |
parent | ff818c24c2af370153646d302d831b69b023816f (diff) | |
download | op-kernel-dev-b331439dfd41dc813b3557ca5927a3a644f35792.zip op-kernel-dev-b331439dfd41dc813b3557ca5927a3a644f35792.tar.gz |
ALSA: hda - Fix control element allocations in VIA codec parser
The commit 5b0cb1d850c26893b1468b3a519433a1b7a176be
ALSA: hda - add more NID->Control mapping
breaks the control element allocation by returning a wrong value.
Let's fix it.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_via.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c index 9ddc373..be12954 100644 --- a/sound/pci/hda/patch_via.c +++ b/sound/pci/hda/patch_via.c @@ -476,7 +476,7 @@ static struct snd_kcontrol_new *via_clone_control(struct via_spec *spec, knew->name = kstrdup(tmpl->name, GFP_KERNEL); if (!knew->name) return NULL; - return 0; + return knew; } static void via_free_kctls(struct hda_codec *codec) |