diff options
author | David Henningsson <david.henningsson@canonical.com> | 2012-02-01 15:05:41 +0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-02-01 15:13:16 +0400 |
commit | 54c2a89f60fd71b924d0f848ac892442951401a6 (patch) | |
tree | dde1139d2618014edd81edccd743a6584ca31446 /sound/pci | |
parent | f70eecde3bca92630d3886496e73316ff353f185 (diff) | |
download | linux-54c2a89f60fd71b924d0f848ac892442951401a6.tar.xz |
ALSA: HDA: Fix duplicated output to more than one codec
This typo caused the wrong codec's nid to be checked for wcaps type.
As a result, sometimes speakers would duplicate the output sent to
HDMI output.
Cc: stable@kernel.org
BugLink: https://bugs.launchpad.net/bugs/924320
Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/hda_codec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index 4df72c0e8c37..c2c65f63bf06 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c @@ -1447,7 +1447,7 @@ void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, for (i = 0; i < c->cvt_setups.used; i++) { p = snd_array_elem(&c->cvt_setups, i); if (!p->active && p->stream_tag == stream_tag && - get_wcaps_type(get_wcaps(codec, p->nid)) == type) + get_wcaps_type(get_wcaps(c, p->nid)) == type) p->dirty = 1; } } |