diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-01-11 00:37:24 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-01-11 00:37:24 +0000 |
commit | c5d75818df75ee8048a06e94372011b801ea778d (patch) | |
tree | 1334165dd711576425b20d132256d949134a18ed /sys/dev/pci/ichiic.c | |
parent | 92f918688518e8a9d992955fa93972e6dd4d1cb1 (diff) |
match on Intel Jasper Lake
cavs/hda is pci class multimedia subclass audio so not automatically
matched by azalia but confirmed to work after matched
tested by Sven Wolf on Acer Swift 1 SF114-34 with Pentium Silver N6000
Diffstat (limited to 'sys/dev/pci/ichiic.c')
-rw-r--r-- | sys/dev/pci/ichiic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/ichiic.c b/sys/dev/pci/ichiic.c index 0c996799153..1c4ea5ece4d 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.46 2021/10/30 03:27:35 jsg Exp $ */ +/* $OpenBSD: ichiic.c,v 1.47 2022/01/11 00:37:23 jsg Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -135,6 +135,7 @@ const struct pci_matchid ichiic_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_500SERIES_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_500SERIES_LP_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_600SERIES_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_JSL_SMB }, }; int |