diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-04-24 06:47:57 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-04-24 06:47:57 +0000 |
commit | 55927b97ac51f19ed6db0e2975713692826f2cb5 (patch) | |
tree | c4a7c472e0fd128f9a78ad6aabb3b0a996bb6152 /sys | |
parent | 96522a25245d3703c8ac49a3836567f5b25b5cc9 (diff) |
match on Intel 100 series and 100 series LP PCH
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/pucdata.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index c322667d3e3..2f88318c640 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.103 2016/03/17 20:28:18 uaa Exp $ */ +/* $OpenBSD: pucdata.c,v 1.104 2016/04/24 06:47:56 jsg Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -89,6 +89,20 @@ const struct puc_device_description puc_devs[] = { { PUC_COM_POW2(0), 0x10, 0x0000 }, }, }, + { /* 100 Series KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_100SERIES_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_COM_POW2(0), 0x10, 0x0000 }, + }, + }, + { /* 100 Series LP KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_100SERIES_LP_KT, 0x0000, 0x0000 }, + { 0xffff, 0xffff, 0x0000, 0x0000 }, + { + { PUC_COM_POW2(0), 0x10, 0x0000 }, + }, + }, { /* 82946GZ KT */ { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82946GZ_KT, 0x0000, 0x0000 }, { 0xffff, 0xffff, 0x0000, 0x0000 }, |