aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/hda_codec.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2008-11-25 05:56:25 -0500
committerTakashi Iwai <tiwai@suse.de>2008-11-25 05:56:25 -0500
commit0e19e7d2bff0ec04fe4dc920c580d8a321afa07f (patch)
tree9e784e7556a92172a0b27465e0b081437e44335e /sound/pci/hda/hda_codec.c
parent82894b6f6f109722070d4d78730fe50cdaba9443 (diff)
parentf73d35853e9263c7c404f0d6c0fe3d83fc6fd5c0 (diff)
Merge branch 'topic/fix/hda' into topic/hda
Conflicts: sound/pci/hda/patch_sigmatel.c
Diffstat (limited to 'sound/pci/hda/hda_codec.c')
-rw-r--r--sound/pci/hda/hda_codec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c
index d56d11ab20a3..53f64eb75ec6 100644
--- a/sound/pci/hda/hda_codec.c
+++ b/sound/pci/hda/hda_codec.c
@@ -1586,12 +1586,12 @@ static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
1586{ 1586{
1587 hda_nid_t *d; 1587 hda_nid_t *d;
1588 1588
1589 snd_hda_codec_write(codec, nid, 0, verb, val); 1589 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
1590 d = codec->slave_dig_outs; 1590 d = codec->slave_dig_outs;
1591 if (!d) 1591 if (!d)
1592 return; 1592 return;
1593 for (; *d; d++) 1593 for (; *d; d++)
1594 snd_hda_codec_write(codec, *d, 0, verb, val); 1594 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
1595} 1595}
1596 1596
1597static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid, 1597static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,