This is a note to let you know that I've just added the patch titled ALSA: hda - initialize audio InfoFrame to be all zero to the 3.14-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: alsa-hda-initialize-audio-infoframe-to-be-all-zero.patch and it can be found in the queue-3.14 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From caaf5ef9493f72390905f1e97b310b8906d32dac Mon Sep 17 00:00:00 2001 From: Mengdong Lin <mengdong.lin@xxxxxxxxx> Date: Tue, 11 Mar 2014 17:12:52 -0400 Subject: ALSA: hda - initialize audio InfoFrame to be all zero From: Mengdong Lin <mengdong.lin@xxxxxxxxx> commit caaf5ef9493f72390905f1e97b310b8906d32dac upstream. This patch initialized the local audio InfoFrame variable 'ai' to be all zero, thus the data bytes will indicate "Refer to Stream Header" by default. Signed-off-by: Mengdong Lin <mengdong.lin@xxxxxxxxx> Signed-off-by: Takashi Iwai <tiwai@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- sound/pci/hda/patch_hdmi.c | 1 + 1 file changed, 1 insertion(+) --- a/sound/pci/hda/patch_hdmi.c +++ b/sound/pci/hda/patch_hdmi.c @@ -1062,6 +1062,7 @@ static void hdmi_pin_setup_infoframe(str { union audio_infoframe ai; + memset(&ai, 0, sizeof(ai)); if (conn_type == 0) { /* HDMI */ struct hdmi_audio_infoframe *hdmi_ai = &ai.hdmi; Patches currently in stable-queue which might be from mengdong.lin@xxxxxxxxx are queue-3.14/alsa-hda-initialize-audio-infoframe-to-be-all-zero.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html