ALSA: hda: Add Geminilake id to SKL_PLUS
authorSubhransu S. Prusty <[email protected]>
Wed, 12 Apr 2017 04:24:00 +0000 (09:54 +0530)
committerTakashi Iwai <[email protected]>
Wed, 12 Apr 2017 05:16:48 +0000 (07:16 +0200)
Geminilake is Skylake family platform. So add it's id to skl_plus check.

Fixes: 126cfa2f5e15 ("ALSA: hda: Add Geminilake HDMI codec ID")
Signed-off-by: Subhransu S. Prusty <[email protected]>
Cc: Senthilnathan Veppur <[email protected]>
Cc: Vinod Koul <[email protected]>
Cc: Takashi Iwai <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
sound/pci/hda/hda_intel.c

index 59ab34fa0bc838fea0dc906bb1f0fc6e5d7c1a4c..b786fbab029ff621a7c422581cc0442ecd6a1737 100644 (file)
@@ -370,8 +370,10 @@ enum {
 #define IS_KBL_LP(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0x9d71)
 #define IS_KBL_H(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0xa2f0)
 #define IS_BXT(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0x5a98)
+#define IS_GLK(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0x3198)
 #define IS_SKL_PLUS(pci) (IS_SKL(pci) || IS_SKL_LP(pci) || IS_BXT(pci)) || \
-                       IS_KBL(pci) || IS_KBL_LP(pci) || IS_KBL_H(pci)
+                       IS_KBL(pci) || IS_KBL_LP(pci) || IS_KBL_H(pci)  || \
+                       IS_GLK(pci)
 
 static char *driver_short_names[] = {
        [AZX_DRIVER_ICH] = "HDA Intel",