]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ALSA: hda - Add codec->no_jack_detect flag
authorTakashi Iwai <tiwai@suse.de>
Mon, 13 Feb 2012 10:55:02 +0000 (11:55 +0100)
committerTakashi Iwai <tiwai@suse.de>
Mon, 13 Feb 2012 11:06:09 +0000 (12:06 +0100)
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>
sound/pci/hda/hda_codec.h
sound/pci/hda/hda_jack.c

index e9f71dc0d46415587f7461678d5ae6051aa9b289..654d2e41e25d40f4d48840232c6113e781b520b9 100644 (file)
@@ -852,6 +852,7 @@ struct hda_codec {
        unsigned int pins_shutup:1;     /* pins are shut up */
        unsigned int no_trigger_sense:1; /* don't trigger at pin-sensing */
        unsigned int ignore_misc_bit:1; /* ignore MISC_NO_PRESENCE bit */
+       unsigned int no_jack_detect:1;  /* Machine has no jack-detection */
 #ifdef CONFIG_SND_HDA_POWER_SAVE
        unsigned int power_on :1;       /* current (global) power-state */
        unsigned int power_transition :1; /* power-state in transition */
index ac7e57c403981623d3a8cb21b3e914719c495d89..d68948499fbc15d7342ba0c9a63675d769b95a92 100644 (file)
@@ -21,6 +21,8 @@
 
 bool is_jack_detectable(struct hda_codec *codec, hda_nid_t nid)
 {
+       if (codec->no_jack_detect)
+               return false;
        if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_PRES_DETECT))
                return false;
        if (!codec->ignore_misc_bit &&