aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorWu Fengguang <fengguang.wu@intel.com>2009-11-18 12:37:59 +0800
committerTakashi Iwai <tiwai@suse.de>2009-11-18 07:37:06 +0100
commit6f539a98614a014a7d6b64ab62b0dddb14e2d8cc (patch)
tree89bb50699f5ae69ed08d80982a620e3e828d3c1b /sound/pci
parentALSA: hda - Disable default quirk for Sony VAIO with ALC262 codec (diff)
downloadlinux-dev-6f539a98614a014a7d6b64ab62b0dddb14e2d8cc.tar.xz
linux-dev-6f539a98614a014a7d6b64ab62b0dddb14e2d8cc.zip
ALSA: intelhdmi - fix audio infoframe fill size
Reported-by: David Härdeman <david@hardeman.nu> Signed-off-by: Wu Fengguang <fengguang.wu@intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/hda/patch_intelhdmi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_intelhdmi.c b/sound/pci/hda/patch_intelhdmi.c
index 4f25f08d332b..ad1aa5d87dda 100644
--- a/sound/pci/hda/patch_intelhdmi.c
+++ b/sound/pci/hda/patch_intelhdmi.c
@@ -509,12 +509,12 @@ static void hdmi_fill_audio_infoframe(struct hda_codec *codec,
hdmi_debug_dip_size(codec, pin_nid);
hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */
- for (i = 0; i < sizeof(ai); i++)
+ for (i = 0; i < sizeof(*ai); i++)
sum += params[i];
ai->checksum = - sum;
hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0);
- for (i = 0; i < sizeof(ai); i++)
+ for (i = 0; i < sizeof(*ai); i++)
hdmi_write_dip_byte(codec, pin_nid, params[i]);
}