diff options
| author | Takashi Iwai <tiwai@suse.de> | 2008-12-19 08:20:38 +0100 | 
|---|---|---|
| committer | Takashi Iwai <tiwai@suse.de> | 2008-12-19 08:20:38 +0100 | 
| commit | 85f13b673f6a59d29529b2a60b88306c68e7b56c (patch) | |
| tree | a9b0dcad78d72c0548e0433960066a4cb33e11aa | |
| parent | fa620e97feae731f3d461baaac4da0b127b6fd8e (diff) | |
ALSA: Revert "ALSA: hda: removed unneeded hp_nid references"
This reverts commit 07f455f779acfb3eba4921fd1399761559b10fa9.
    ALSA: hda: removed unneeded hp_nid references
    Removed unneeded hp_nid references for 92hd73xx codec family.
This caused the silent output on some Intel desktops due to missing
routing of widget 0x0a and 0x0d.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
| -rw-r--r-- | sound/pci/hda/patch_sigmatel.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index 0bb3caecb86c..5fcaae676e2a 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c @@ -4259,14 +4259,17 @@ again:  	switch (spec->multiout.num_dacs) {  	case 0x3: /* 6 Channel */ +		spec->multiout.hp_nid = 0x17;  		spec->mixer = stac92hd73xx_6ch_mixer;  		spec->init = stac92hd73xx_6ch_core_init;  		break;  	case 0x4: /* 8 Channel */ +		spec->multiout.hp_nid = 0x18;  		spec->mixer = stac92hd73xx_8ch_mixer;  		spec->init = stac92hd73xx_8ch_core_init;  		break;  	case 0x5: /* 10 Channel */ +		spec->multiout.hp_nid = 0x19;  		spec->mixer = stac92hd73xx_10ch_mixer;  		spec->init = stac92hd73xx_10ch_core_init;  	}; | 
