diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-10-27 16:12:46 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-11-16 05:11:15 -0500 |
commit | 1835a0f9a2121ce3198dab67507d4d3e960cc09e (patch) | |
tree | 5cbd9f34a3cb5d4906042c9fed5ab5fe2813123e /sound/pci/hda/hda_codec.h | |
parent | 04f5ade6afc4326dc6cd10d235500972fba548eb (diff) |
ALSA: hda - Cache the jack-detection value
Introduce a table containing the pins and their jack-detection states
for avoiding the unnecessary verbs to check the pin status at each time.
When the unsol event is enabled via snd_hda_jack_detect_enable(), it
automatically adds the given NID to the table. Then the driver supposes
that the codec driver will set the dirty flag appropariately when an
unsolicited event is invoked for that pin.
The behavior for reading other pins that aren't registered in the table
doesn't change. Only the pins assigned to the table are cached, so far.
In near futre, this table can be extended to use the central place for
the unsolicited events of all pins, etc, and eventually include the
jack-detect kcontrols that replace the current input-jack stuff.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_codec.h')
-rw-r--r-- | sound/pci/hda/hda_codec.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h index 564471169cae..97aa65d1f1d1 100644 --- a/sound/pci/hda/hda_codec.h +++ b/sound/pci/hda/hda_codec.h | |||
@@ -869,6 +869,9 @@ struct hda_codec { | |||
869 | void (*proc_widget_hook)(struct snd_info_buffer *buffer, | 869 | void (*proc_widget_hook)(struct snd_info_buffer *buffer, |
870 | struct hda_codec *codec, hda_nid_t nid); | 870 | struct hda_codec *codec, hda_nid_t nid); |
871 | 871 | ||
872 | /* jack detection */ | ||
873 | struct snd_array jacktbl; | ||
874 | |||
872 | #ifdef CONFIG_SND_HDA_INPUT_JACK | 875 | #ifdef CONFIG_SND_HDA_INPUT_JACK |
873 | /* jack detection */ | 876 | /* jack detection */ |
874 | struct snd_array jacks; | 877 | struct snd_array jacks; |