]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ALSA: hda - bug fix on return value when getting HDMI ELD info
authorMengdong Lin <mengdong.lin@intel.com>
Thu, 28 Mar 2013 09:20:22 +0000 (05:20 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Apr 2013 16:52:04 +0000 (09:52 -0700)
commit 2ef5692efad330b67a234e2c49edad38538751e7 upstream.

In function snd_hdmi_get_eld(), the variable 'ret' should be initialized to 0.
Otherwise it will be returned uninitialized as non-zero after ELD info is got
successfully. Thus hdmi_present_sense() will always assume ELD info is invalid
by mistake, and /proc file system cannot show the proper ELD info.

Signed-off-by: Mengdong Lin <mengdong.lin@intel.com>
Acked-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
sound/pci/hda/hda_eld.c

index 4c054f4486b943b58ffae9ba51f4c40b98c99d19..86f6468cb23f68b467a38cc540e97b13de7a474e 100644 (file)
@@ -322,7 +322,7 @@ int snd_hdmi_get_eld(struct hdmi_eld *eld,
                     struct hda_codec *codec, hda_nid_t nid)
 {
        int i;
-       int ret;
+       int ret = 0;
        int size;
        unsigned char *buf;