diff options
author | 2020-10-07 11:20:41 +0000 | |
---|---|---|
committer | 2020-10-07 11:20:41 +0000 | |
commit | ce666b53c87063c1975f953598998e080c6c98f7 (patch) | |
tree | 05f742e62e46ed848577d65da249849f8589a47f | |
parent | match on more pch thermal ids (diff) | |
download | wireguard-openbsd-ce666b53c87063c1975f953598998e080c6c98f7.tar.xz wireguard-openbsd-ce666b53c87063c1975f953598998e080c6c98f7.zip |
match on more pch kt ids
-rw-r--r-- | sys/dev/pci/pucdata.c | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index 51a41fa0e43..d09ddff3a2e 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.112 2020/08/14 18:14:11 jcs Exp $ */ +/* $OpenBSD: pucdata.c,v 1.113 2020/10/07 11:20:41 jsg Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -124,6 +124,41 @@ const struct puc_device_description puc_devs[] = { { PUC_PORT_COM, 0x10, 0x0000 }, }, }, + { /* 400 Series KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_400SERIES_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_PORT_COM, 0x10, 0x0000 }, + }, + }, + { /* 400 Series LP KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_400SERIES_LP_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_PORT_COM, 0x10, 0x0000 }, + }, + }, + { /* 400 Series V KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_400SERIES_V_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_PORT_COM, 0x10, 0x0000 }, + }, + }, + { /* 495 Series LP KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_495SERIES_LP_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_PORT_COM, 0x10, 0x0000 }, + }, + }, + { /* 500 Series LP KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_500SERIES_LP_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_PORT_COM, 0x10, 0x0000 }, + }, + }, { /* 82946GZ KT */ { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82946GZ_KT, 0x0000, 0x0000 }, { 0xffff, 0xffff, 0x0000, 0x0000 }, |