summaryrefslogtreecommitdiff
path: root/sound/pci/hda/hda_proc.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2009-12-12 17:18:08 (GMT)
committerTakashi Iwai <tiwai@suse.de>2009-12-12 17:18:08 (GMT)
commit84a3bd061c1974aea4b14b954e518ce144e407c6 (patch)
tree1dade22a9448d6aa0f7fd2a4d052374132b9567b /sound/pci/hda/hda_proc.c
parentf52d7a4393136107f526040f6ef190ab49032496 (diff)
parent52dc438606d1ef78b96f56cc04dbea9242005730 (diff)
downloadlinux-84a3bd061c1974aea4b14b954e518ce144e407c6.tar.xz
Merge branch 'topic/hda' into for-linus
Diffstat (limited to 'sound/pci/hda/hda_proc.c')
-rw-r--r--sound/pci/hda/hda_proc.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_proc.c b/sound/pci/hda/hda_proc.c
index 09476fc..c9afc04 100644
--- a/sound/pci/hda/hda_proc.c
+++ b/sound/pci/hda/hda_proc.c
@@ -240,9 +240,14 @@ static void print_pin_caps(struct snd_info_buffer *buffer,
/* Realtek uses this bit as a different meaning */
if ((codec->vendor_id >> 16) == 0x10ec)
snd_iprintf(buffer, " R/L");
- else
+ else {
+ if (caps & AC_PINCAP_HBR)
+ snd_iprintf(buffer, " HBR");
snd_iprintf(buffer, " HDMI");
+ }
}
+ if (caps & AC_PINCAP_DP)
+ snd_iprintf(buffer, " DP");
if (caps & AC_PINCAP_TRIG_REQ)
snd_iprintf(buffer, " Trigger");
if (caps & AC_PINCAP_IMP_SENSE)