diff options
author | Wu Fengguang <fengguang.wu@intel.com> | 2009-10-30 11:44:26 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-10-30 11:44:26 +0100 |
commit | 54a25f87e943fc77f57e86849897ad6602519286 (patch) | |
tree | 669440adf0fa4342f250fb68937a23a879c19a89 /sound/pci/hda/hda_eld.c | |
parent | ddb8152b054e357907f57fb5ae65d494a3c79065 (diff) | |
download | blackbird-op-linux-54a25f87e943fc77f57e86849897ad6602519286.tar.gz blackbird-op-linux-54a25f87e943fc77f57e86849897ad6602519286.zip |
ALSA: hda - vectorize intelhdmi
The Intel IbexPeak HDMI codec supports 2 converters and 3 pins,
which requires converting the cvt_nid/pin_nid to arrays.
The active pin number (the one connected with a live HDMI monitor/sink)
will be dynamically identified on hotplug events.
It exports two HDMI devices, so that user space can choose the A/V pipe
for sending the audio samples.
It's still undefined behavior when there are two active monitors
connected and routed to the same audio converter.
Signed-off-by: Wu Fengguang <fengguang.wu@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_eld.c')
-rw-r--r-- | sound/pci/hda/hda_eld.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/pci/hda/hda_eld.c b/sound/pci/hda/hda_eld.c index 9446a5abea13..20fa6aee29c0 100644 --- a/sound/pci/hda/hda_eld.c +++ b/sound/pci/hda/hda_eld.c @@ -560,13 +560,14 @@ static void hdmi_write_eld_info(struct snd_info_entry *entry, } -int snd_hda_eld_proc_new(struct hda_codec *codec, struct hdmi_eld *eld) +int snd_hda_eld_proc_new(struct hda_codec *codec, struct hdmi_eld *eld, + int index) { char name[32]; struct snd_info_entry *entry; int err; - snprintf(name, sizeof(name), "eld#%d", codec->addr); + snprintf(name, sizeof(name), "eld#%d.%d", codec->addr, index); err = snd_card_proc_new(codec->bus->card, name, &entry); if (err < 0) return err; |