diff options
-rw-r--r-- | sound/pci/hda/patch_sigmatel.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index d19090fd2d13..ee119259183c 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c | |||
@@ -2871,6 +2871,16 @@ static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t nid) | |||
2871 | return conn[j]; | 2871 | return conn[j]; |
2872 | } | 2872 | } |
2873 | } | 2873 | } |
2874 | /* if all DACs are already assigned, connect to the primary DAC */ | ||
2875 | if (conn_len > 1) { | ||
2876 | for (j = 0; j < conn_len; j++) { | ||
2877 | if (conn[j] == spec->multiout.dac_nids[0]) { | ||
2878 | snd_hda_codec_write_cache(codec, nid, 0, | ||
2879 | AC_VERB_SET_CONNECT_SEL, j); | ||
2880 | break; | ||
2881 | } | ||
2882 | } | ||
2883 | } | ||
2874 | return 0; | 2884 | return 0; |
2875 | } | 2885 | } |
2876 | 2886 | ||