diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-01-20 18:24:13 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-01-20 18:24:13 +0100 |
commit | 2297bd6e526ce1469279284ffda9140f8d60ea84 (patch) | |
tree | 569b8e25c2169e64f91f1a6a8c819420f5589a80 /sound/pci/hda/hda_local.h | |
parent | 41b5b01afb71226653282951965d5efa9d7b843d (diff) |
ALSA: hda - Check HDMI jack types in the auto configuration
Add dig_out_type and dig_in_type fields to autocfg struct.
A proper HDA_PCM_TYPE_* value is assigned to these fields according
to the pin-jack location type value.
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.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_local.h b/sound/pci/hda/hda_local.h index 1dd8716c387..a4ecd77a451 100644 --- a/sound/pci/hda/hda_local.h +++ b/sound/pci/hda/hda_local.h @@ -355,6 +355,8 @@ struct auto_pin_cfg { hda_nid_t dig_out_pin; hda_nid_t dig_in_pin; hda_nid_t mono_out_pin; + int dig_out_type; /* HDA_PCM_TYPE_XXX */ + int dig_in_type; /* HDA_PCM_TYPE_XXX */ }; #define get_defcfg_connect(cfg) \ |