aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWu Fengguang <fengguang.wu@intel.com>2009-11-17 23:38:00 -0500
committerTakashi Iwai <tiwai@suse.de>2009-11-18 01:37:22 -0500
commit1e7c10fefadb42d9300305c7de57bea365855e9b (patch)
tree0ed9ac354cdb3e54733477c3009f2d98d7b1a607
parent6f539a98614a014a7d6b64ab62b0dddb14e2d8cc (diff)
ALSA: intelhdmi - fix channel mapping slot mask
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--sound/pci/hda/patch_intelhdmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_intelhdmi.c b/sound/pci/hda/patch_intelhdmi.c
index ad1aa5d87dda..82312c67f8dd 100644
--- a/sound/pci/hda/patch_intelhdmi.c
+++ b/sound/pci/hda/patch_intelhdmi.c
@@ -433,7 +433,7 @@ static void hdmi_debug_channel_mapping(struct hda_codec *codec, hda_nid_t nid)
433 slot = snd_hda_codec_read(codec, nid, 0, 433 slot = snd_hda_codec_read(codec, nid, 0,
434 AC_VERB_GET_HDMI_CHAN_SLOT, i); 434 AC_VERB_GET_HDMI_CHAN_SLOT, i);
435 printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n", 435 printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n",
436 slot >> 4, slot & 0x7); 436 slot >> 4, slot & 0xf);
437 } 437 }
438#endif 438#endif
439} 439}