* [PATCH v2 2/2] ALSA: hda - bug fix on HDMI ELD debug message
@ 2013-03-28 9:21 mengdong.lin
2013-04-02 6:30 ` David Henningsson
2013-04-02 9:57 ` Takashi Iwai
0 siblings, 2 replies; 3+ messages in thread
From: mengdong.lin @ 2013-03-28 9:21 UTC (permalink / raw)
To: alsa-devel, tiwai; +Cc: Mengdong Lin
From: Mengdong Lin <mengdong.lin@intel.com>
This patch let ELD debug message show 'pin_eld->monitor_present' which reflects
the real pin response to verb GET_PIN_SENSE.
'eld->monitor_present' should not be used here because 'eld' is a temp
structure now and so its "monitor_present" is not set.
Signed-off-by: Mengdong Lin <mengdong.lin@intel.com>
diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c
index 78e1827..de8ac5c 100644
--- a/sound/pci/hda/patch_hdmi.c
+++ b/sound/pci/hda/patch_hdmi.c
@@ -1196,7 +1196,7 @@ static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
_snd_printd(SND_PR_VERBOSE,
"HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
- codec->addr, pin_nid, eld->monitor_present, eld->eld_valid);
+ codec->addr, pin_nid, pin_eld->monitor_present, eld->eld_valid);
if (eld->eld_valid) {
if (snd_hdmi_get_eld(codec, pin_nid, eld->eld_buffer,
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v2 2/2] ALSA: hda - bug fix on HDMI ELD debug message
2013-03-28 9:21 [PATCH v2 2/2] ALSA: hda - bug fix on HDMI ELD debug message mengdong.lin
@ 2013-04-02 6:30 ` David Henningsson
2013-04-02 9:57 ` Takashi Iwai
1 sibling, 0 replies; 3+ messages in thread
From: David Henningsson @ 2013-04-02 6:30 UTC (permalink / raw)
To: mengdong.lin; +Cc: tiwai, alsa-devel
On 03/28/2013 10:21 AM, mengdong.lin@intel.com wrote:
> From: Mengdong Lin <mengdong.lin@intel.com>
>
> This patch let ELD debug message show 'pin_eld->monitor_present' which reflects
> the real pin response to verb GET_PIN_SENSE.
>
> 'eld->monitor_present' should not be used here because 'eld' is a temp
> structure now and so its "monitor_present" is not set.
>
> Signed-off-by: Mengdong Lin <mengdong.lin@intel.com>
Acked-by: David Henningsson <david.henningsson@canonical.com>
>
> diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c
> index 78e1827..de8ac5c 100644
> --- a/sound/pci/hda/patch_hdmi.c
> +++ b/sound/pci/hda/patch_hdmi.c
> @@ -1196,7 +1196,7 @@ static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
>
> _snd_printd(SND_PR_VERBOSE,
> "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
> - codec->addr, pin_nid, eld->monitor_present, eld->eld_valid);
> + codec->addr, pin_nid, pin_eld->monitor_present, eld->eld_valid);
>
> if (eld->eld_valid) {
> if (snd_hdmi_get_eld(codec, pin_nid, eld->eld_buffer,
>
--
David Henningsson, Canonical Ltd.
https://launchpad.net/~diwic
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v2 2/2] ALSA: hda - bug fix on HDMI ELD debug message
2013-03-28 9:21 [PATCH v2 2/2] ALSA: hda - bug fix on HDMI ELD debug message mengdong.lin
2013-04-02 6:30 ` David Henningsson
@ 2013-04-02 9:57 ` Takashi Iwai
1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2013-04-02 9:57 UTC (permalink / raw)
To: mengdong.lin; +Cc: alsa-devel
At Thu, 28 Mar 2013 05:21:28 -0400,
mengdong.lin@intel.com wrote:
>
> From: Mengdong Lin <mengdong.lin@intel.com>
>
> This patch let ELD debug message show 'pin_eld->monitor_present' which reflects
> the real pin response to verb GET_PIN_SENSE.
>
> 'eld->monitor_present' should not be used here because 'eld' is a temp
> structure now and so its "monitor_present" is not set.
>
> Signed-off-by: Mengdong Lin <mengdong.lin@intel.com>
Applied now.
thanks,
Takashi
>
> diff --git a/sound/pci/hda/patch_hdmi.c b/sound/pci/hda/patch_hdmi.c
> index 78e1827..de8ac5c 100644
> --- a/sound/pci/hda/patch_hdmi.c
> +++ b/sound/pci/hda/patch_hdmi.c
> @@ -1196,7 +1196,7 @@ static void hdmi_present_sense(struct hdmi_spec_per_pin *per_pin, int repoll)
>
> _snd_printd(SND_PR_VERBOSE,
> "HDMI status: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n",
> - codec->addr, pin_nid, eld->monitor_present, eld->eld_valid);
> + codec->addr, pin_nid, pin_eld->monitor_present, eld->eld_valid);
>
> if (eld->eld_valid) {
> if (snd_hdmi_get_eld(codec, pin_nid, eld->eld_buffer,
> --
> 1.7.10.4
>
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-04-02 9:57 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-28 9:21 [PATCH v2 2/2] ALSA: hda - bug fix on HDMI ELD debug message mengdong.lin
2013-04-02 6:30 ` David Henningsson
2013-04-02 9:57 ` Takashi Iwai
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.