Skip to content

Commit 12ee402

Browse files
Subhransu S. Prustytiwai
authored andcommitted
ALSA: hda: Add Geminilake id to SKL_PLUS
Geminilake is Skylake family platform. So add it's id to skl_plus check. Fixes: 126cfa2 ("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]>
1 parent b7c5ac8 commit 12ee402

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sound/pci/hda/hda_intel.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,8 +370,10 @@ enum {
370370
#define IS_KBL_LP(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0x9d71)
371371
#define IS_KBL_H(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0xa2f0)
372372
#define IS_BXT(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0x5a98)
373+
#define IS_GLK(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0x3198)
373374
#define IS_SKL_PLUS(pci) (IS_SKL(pci) || IS_SKL_LP(pci) || IS_BXT(pci)) || \
374-
IS_KBL(pci) || IS_KBL_LP(pci) || IS_KBL_H(pci)
375+
IS_KBL(pci) || IS_KBL_LP(pci) || IS_KBL_H(pci) || \
376+
IS_GLK(pci)
375377

376378
static char *driver_short_names[] = {
377379
[AZX_DRIVER_ICH] = "HDA Intel",

0 commit comments

Comments
 (0)