diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-08-02 05:38:18 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2022-08-02 05:38:18 +0000 |
commit | 234a1eab149222780a7f05440ee6555a9d0e8218 (patch) | |
tree | 3309628e52ec1182b4b03c3b2341b06a0f5cf227 | |
parent | 0d4a941cf4ad2d99aed38890d52686ed700fcb02 (diff) |
match on Intel 600 Series LP
-rw-r--r-- | sys/dev/pci/pucdata.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys/dev/pci/pucdata.c b/sys/dev/pci/pucdata.c index adfebe68c15..a2976dafde2 100644 --- a/sys/dev/pci/pucdata.c +++ b/sys/dev/pci/pucdata.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pucdata.c,v 1.116 2022/01/09 05:42:58 jsg Exp $ */ +/* $OpenBSD: pucdata.c,v 1.117 2022/08/02 05:38:17 jsg Exp $ */ /* $NetBSD: pucdata.c,v 1.6 1999/07/03 05:55:23 cgd Exp $ */ /* @@ -173,6 +173,13 @@ const struct puc_device_description puc_devs[] = { { PUC_PORT_COM, 0x10, 0x0000 }, }, }, + { /* 600 Series LP KT */ + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_600SERIES_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 }, |