From: Wu Fengguang Date: Wed, 11 Feb 2009 07:22:30 +0000 (+0800) Subject: ALSA: hda - compute checksum in HDMI audio infoframe X-Git-Tag: v2.6.29-rc5~1^2~1^2~5 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=9a957a24e3b4008d84e204cdf25849ae4d5592a2;p=~emulex%2Finfiniband.git ALSA: hda - compute checksum in HDMI audio infoframe Signed-off-by: Wu Fengguang Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/hda/patch_intelhdmi.c b/sound/pci/hda/patch_intelhdmi.c index f2610d67e18..90b11374a0a 100644 --- a/sound/pci/hda/patch_intelhdmi.c +++ b/sound/pci/hda/patch_intelhdmi.c @@ -366,11 +366,16 @@ static void hdmi_fill_audio_infoframe(struct hda_codec *codec, struct hdmi_audio_infoframe *ai) { u8 *params = (u8 *)ai; + u8 sum = 0; int i; hdmi_debug_dip_size(codec); hdmi_clear_dip_buffers(codec); /* be paranoid */ + 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++) hdmi_write_dip_byte(codec, PIN_NID, params[i]);