diff options
author | 2010-05-18 21:51:10 +0000 | |
---|---|---|
committer | 2010-05-18 21:51:10 +0000 | |
commit | e8973982ed458e019e5a80c41b89532111c80154 (patch) | |
tree | f433e5ddfeeb692962a175a31d780df4b7b14a32 /sys/dev/pci/if_em.c | |
parent | regen (diff) | |
download | wireguard-openbsd-e8973982ed458e019e5a80c41b89532111c80154.tar.xz wireguard-openbsd-e8973982ed458e019e5a80c41b89532111c80154.zip |
Add as yet untested support for the 82576 quad copper ET2
based on information in the linux driver.
ok claudio@
Diffstat (limited to 'sys/dev/pci/if_em.c')
-rw-r--r-- | sys/dev/pci/if_em.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_em.c b/sys/dev/pci/if_em.c index 2559d2c13be..e117aa4840d 100644 --- a/sys/dev/pci/if_em.c +++ b/sys/dev/pci/if_em.c @@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE. ***************************************************************************/ -/* $OpenBSD: if_em.c,v 1.235 2010/03/16 22:48:43 kettenis Exp $ */ +/* $OpenBSD: if_em.c,v 1.236 2010/05/18 21:51:10 jsg Exp $ */ /* $FreeBSD: if_em.c,v 1.46 2004/09/29 18:28:28 mlaier Exp $ */ #include <dev/pci/if_em.h> @@ -125,6 +125,7 @@ const struct pci_matchid em_devices[] = { { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82576_FIBER }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82576_SERDES }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82576_QUAD_COPPER }, + { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82576_QUAD_CU_ET2 }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_82576_NS }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_ICH8_IFE }, { PCI_VENDOR_INTEL, PCI_PRODUCT_INTEL_ICH8_IFE_G }, |