OSDN Git Service

ALSA: hda/hdmi - Don't fall back to generic when i915 binding fails
authorTakashi Iwai <tiwai@suse.de>
Wed, 27 Jun 2018 07:54:46 +0000 (09:54 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 28 Jun 2018 11:36:54 +0000 (13:36 +0200)
When i915 component binding fails, it means that HDMI isn't applicable
anyway.  Although the probe with the generic HDMI parser would still
work, it's essentially useless, hence better to be left unbound.

This patch mimics the probe_id field at failing the i915 component
binding so that the generic HDMI won't be bound after that.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/hda_codec.h
sound/pci/hda/patch_hdmi.c

index 8a095c1..993294c 100644 (file)
@@ -84,6 +84,7 @@ struct hda_bus {
  */
 typedef int (*hda_codec_patch_t)(struct hda_codec *);
        
+#define HDA_CODEC_ID_SKIP_PROBE                0x00000001
 #define HDA_CODEC_ID_GENERIC_HDMI      0x00000101
 #define HDA_CODEC_ID_GENERIC           0x00000201
 
index ed2318f..cbf5f4e 100644 (file)
@@ -2542,6 +2542,8 @@ static int alloc_intel_hdmi(struct hda_codec *codec)
        /* requires i915 binding */
        if (!codec->bus->core.audio_component) {
                codec_info(codec, "No i915 binding for Intel HDMI/DP codec\n");
+               /* set probe_id here to prevent generic fallback binding */
+               codec->probe_id = HDA_CODEC_ID_SKIP_PROBE;
                return -ENODEV;
        }