aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci/hda/hda_local.h
diff options
context:
space:
mode:
authorWu Fengguang <wfg@linux.intel.com>2008-11-19 02:14:00 -0500
committerTakashi Iwai <tiwai@suse.de>2008-11-19 03:42:07 -0500
commit5b87ebb7a79455358c1910f2896112ac0fa0d0fa (patch)
tree820b1946f117ecf995a6e0b2636bc86976f1c523 /sound/pci/hda/hda_local.h
parent4e19c58f27af67735d64d9af0b184181cea7ca63 (diff)
ALSA: hda: rename sink_eld to hdmi_eld
Rename struct sink_eld to hdmi_eld. Signed-off-by: Wu Fengguang <wfg@linux.intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_local.h')
-rw-r--r--sound/pci/hda/hda_local.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/pci/hda/hda_local.h b/sound/pci/hda/hda_local.h
index 0baa9b816ca8..a1473c6cb4bf 100644
--- a/sound/pci/hda/hda_local.h
+++ b/sound/pci/hda/hda_local.h
@@ -462,7 +462,7 @@ struct cea_sad {
462/* 462/*
463 * ELD: EDID Like Data 463 * ELD: EDID Like Data
464 */ 464 */
465struct sink_eld { 465struct hdmi_eld {
466 int eld_size; 466 int eld_size;
467 int baseline_len; 467 int baseline_len;
468 int eld_ver; /* (eld_ver == 0) indicates invalid ELD */ 468 int eld_ver; /* (eld_ver == 0) indicates invalid ELD */
@@ -481,13 +481,13 @@ struct sink_eld {
481}; 481};
482 482
483int snd_hdmi_get_eld_size(struct hda_codec *codec, hda_nid_t nid); 483int snd_hdmi_get_eld_size(struct hda_codec *codec, hda_nid_t nid);
484int snd_hdmi_get_eld(struct sink_eld *, struct hda_codec *, hda_nid_t); 484int snd_hdmi_get_eld(struct hdmi_eld *, struct hda_codec *, hda_nid_t);
485void snd_hdmi_show_eld(struct sink_eld *eld); 485void snd_hdmi_show_eld(struct hdmi_eld *eld);
486 486
487#ifdef CONFIG_PROC_FS 487#ifdef CONFIG_PROC_FS
488int snd_hda_eld_proc_new(struct hda_codec *codec, struct sink_eld *eld); 488int snd_hda_eld_proc_new(struct hda_codec *codec, struct hdmi_eld *eld);
489#else 489#else
490inline int snd_hda_eld_proc_new(struct hda_codec *codec, struct sink_eld *eld) 490inline int snd_hda_eld_proc_new(struct hda_codec *codec, struct hdmi_eld *eld)
491{ 491{
492 return 0; 492 return 0;
493} 493}