diff options
author | 2009-10-27 23:18:32 +0000 | |
---|---|---|
committer | 2009-10-27 23:18:32 +0000 | |
commit | 8e056978f87a978b5689efcddabbe0da69fe5b0b (patch) | |
tree | ad73c1ff4a9ae30c6920767ac1b5733b2604c127 /sys | |
parent | slightly cleanup the socket and control bits: (diff) | |
download | wireguard-openbsd-8e056978f87a978b5689efcddabbe0da69fe5b0b.tar.xz wireguard-openbsd-8e056978f87a978b5689efcddabbe0da69fe5b0b.zip |
Add another Intel ICH10 variant and the PCH chipset.
From Brad. PCH tested by bwaichu at yahoo com.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/ichiic.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/ichiic.c b/sys/dev/pci/ichiic.c index fb2e0a5bb9a..668ed4b343b 100644 --- a/sys/dev/pci/ichiic.c +++ b/sys/dev/pci/ichiic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ichiic.c,v 1.22 2009/03/29 21:53:52 sthen Exp $ */ +/* $OpenBSD: ichiic.c,v 1.23 2009/10/27 23:18:32 sthen Exp $ */ /* * Copyright (c) 2005, 2006 Alexander Yurchenko <grange@openbsd.org> @@ -86,6 +86,7 @@ struct cfdriver ichiic_cd = { }; const struct pci_matchid ichiic_ids[] = { + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_3400_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6300ESB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_6321ESB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801AA_SMB }, @@ -99,6 +100,7 @@ const struct pci_matchid ichiic_ids[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801GB_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801H_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801I_SMB }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JD_SMB }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82801JI_SMB } }; |