We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7c5ac8 commit 12ee402Copy full SHA for 12ee402
sound/pci/hda/hda_intel.c
@@ -370,8 +370,10 @@ enum {
370
#define IS_KBL_LP(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0x9d71)
371
#define IS_KBL_H(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0xa2f0)
372
#define IS_BXT(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0x5a98)
373
+#define IS_GLK(pci) ((pci)->vendor == 0x8086 && (pci)->device == 0x3198)
374
#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)
375
+ IS_KBL(pci) || IS_KBL_LP(pci) || IS_KBL_H(pci) || \
376
+ IS_GLK(pci)
377
378
static char *driver_short_names[] = {
379
[AZX_DRIVER_ICH] = "HDA Intel",
0 commit comments