diff options
author | Takashi Iwai <tiwai@suse.de> | 2008-12-19 02:20:38 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2008-12-19 02:20:38 -0500 |
commit | 85f13b673f6a59d29529b2a60b88306c68e7b56c (patch) | |
tree | a9b0dcad78d72c0548e0433960066a4cb33e11aa /sound | |
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>
Diffstat (limited to 'sound')
-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: | |||
4259 | 4259 | ||
4260 | switch (spec->multiout.num_dacs) { | 4260 | switch (spec->multiout.num_dacs) { |
4261 | case 0x3: /* 6 Channel */ | 4261 | case 0x3: /* 6 Channel */ |
4262 | spec->multiout.hp_nid = 0x17; | ||
4262 | spec->mixer = stac92hd73xx_6ch_mixer; | 4263 | spec->mixer = stac92hd73xx_6ch_mixer; |
4263 | spec->init = stac92hd73xx_6ch_core_init; | 4264 | spec->init = stac92hd73xx_6ch_core_init; |
4264 | break; | 4265 | break; |
4265 | case 0x4: /* 8 Channel */ | 4266 | case 0x4: /* 8 Channel */ |
4267 | spec->multiout.hp_nid = 0x18; | ||
4266 | spec->mixer = stac92hd73xx_8ch_mixer; | 4268 | spec->mixer = stac92hd73xx_8ch_mixer; |
4267 | spec->init = stac92hd73xx_8ch_core_init; | 4269 | spec->init = stac92hd73xx_8ch_core_init; |
4268 | break; | 4270 | break; |
4269 | case 0x5: /* 10 Channel */ | 4271 | case 0x5: /* 10 Channel */ |
4272 | spec->multiout.hp_nid = 0x19; | ||
4270 | spec->mixer = stac92hd73xx_10ch_mixer; | 4273 | spec->mixer = stac92hd73xx_10ch_mixer; |
4271 | spec->init = stac92hd73xx_10ch_core_init; | 4274 | spec->init = stac92hd73xx_10ch_core_init; |
4272 | }; | 4275 | }; |