diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-02-13 05:55:02 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-02-13 06:06:09 -0500 |
commit | 71b1e9e43d5199f57c109e20c0f4dffc5c048130 (patch) | |
tree | f8e5b6bcc8eb8de6813d6d9bdc382dacb5a48467 /sound/pci/hda/hda_jack.c | |
parent | a9c74173f4be2a536ef8d8c88642e41527f2d8b4 (diff) |
ALSA: hda - Add codec->no_jack_detect flag
Add a new flag to indicate that the codec has no jack-detection cap.
This flag should be set for hardwares that have no jack-detect
implementation although the codec chip itself supports it.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_jack.c')
-rw-r--r-- | sound/pci/hda/hda_jack.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/pci/hda/hda_jack.c b/sound/pci/hda/hda_jack.c index ac7e57c40398..d68948499fbc 100644 --- a/sound/pci/hda/hda_jack.c +++ b/sound/pci/hda/hda_jack.c | |||
@@ -21,6 +21,8 @@ | |||
21 | 21 | ||
22 | bool is_jack_detectable(struct hda_codec *codec, hda_nid_t nid) | 22 | bool is_jack_detectable(struct hda_codec *codec, hda_nid_t nid) |
23 | { | 23 | { |
24 | if (codec->no_jack_detect) | ||
25 | return false; | ||
24 | if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_PRES_DETECT)) | 26 | if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_PRES_DETECT)) |
25 | return false; | 27 | return false; |
26 | if (!codec->ignore_misc_bit && | 28 | if (!codec->ignore_misc_bit && |