aboutsummaryrefslogtreecommitdiff
path: root/sound/pci/hda/patch_via.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2011-06-17 14:54:47 +0200
committerTakashi Iwai <tiwai@suse.de>2011-06-17 14:54:47 +0200
commit3409fcd1f71d02025e3f179127a8ba243c525d78 (patch)
tree365b2e3f8901c358f6ea216c2ba03e7a1f48a359 /sound/pci/hda/patch_via.c
parentf4b1e98aa93d548e5d51c8c5272ea08562fc71c1 (diff)
parentad2409413d09fca763be1ac5161f2a9d82367903 (diff)
Merge branch 'fix/hda' into topic/misc
Diffstat (limited to 'sound/pci/hda/patch_via.c')
-rw-r--r--sound/pci/hda/patch_via.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c
index 605c99e1e52..c952582fb21 100644
--- a/sound/pci/hda/patch_via.c
+++ b/sound/pci/hda/patch_via.c
@@ -832,10 +832,13 @@ static int via_hp_build(struct hda_codec *codec)
knew->subdevice = HDA_SUBDEV_NID_FLAG | nid;
knew->private_value = nid;
- knew = via_clone_control(spec, &via_hp_mixer[1]);
- if (knew == NULL)
- return -ENOMEM;
- knew->subdevice = side_mute_channel(spec);
+ nid = side_mute_channel(spec);
+ if (nid) {
+ knew = via_clone_control(spec, &via_hp_mixer[1]);
+ if (knew == NULL)
+ return -ENOMEM;
+ knew->subdevice = nid;
+ }
return 0;
}