From 18bd2c44b9c7f0ee775e756dd59e12e0939f7ab9 Mon Sep 17 00:00:00 2001
From: Takashi Iwai <tiwai@suse.de>
Date: Mon, 4 Jul 2011 15:55:44 +0200
Subject: [PATCH] ALSA: hda - Create HP-vol control properly for VIA codecs
Git-commit: 18bd2c44b9c7f0ee775e756dd59e12e0939f7ab9
Patch-mainline: 3.1-rc2
References: FATE#314310

When the individual DAC is available for the headphone output, the driver
should create the DAC for its volume control.

Signed-off-by: Takashi Iwai <tiwai@suse.de>

---
 sound/pci/hda/patch_via.c |   10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

--- a/sound/pci/hda/patch_via.c
+++ b/sound/pci/hda/patch_via.c
@@ -1855,6 +1855,7 @@ static int via_auto_create_hp_ctls(struc
 {
 	struct via_spec *spec = codec->spec;
 	struct nid_path *path;
+	bool check_dac;
 	int err;
 
 	if (!pin)
@@ -1875,11 +1876,14 @@ static int via_auto_create_hp_ctls(struc
 	    !spec->hp_dac_nid)
 		return 0;
 
-	if (spec->hp_dac_nid && !spec->hp_indep_shared)
+	if (spec->hp_dac_nid && !spec->hp_indep_shared) {
 		path = &spec->hp_path;
-	else
+		check_dac = true;
+	} else {
 		path = &spec->hp_dep_path;
-	err = create_ch_ctls(codec, "Headphone", 3, false, path);
+		check_dac = false;
+	}
+	err = create_ch_ctls(codec, "Headphone", 3, check_dac, path);
 	if (err < 0)
 		return err;
 	if (spec->hp_dac_nid) {
