summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_fxp_pci.c
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2000-09-25 21:03:16 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2000-09-25 21:03:16 +0000
commit67aba26dcb68e888a18c0b195adc5685ac27e75b (patch)
treec1b478ae6eed769c083a89dc3f7fac0e1371cd8d /sys/dev/pci/if_fxp_pci.c
parentd7e6945103f80bd3460d66b4943c78585f4de17d (diff)
Support the i82562; from FreeBSD. Apparently nothing more needed than to match
its PCI device ID.
Diffstat (limited to 'sys/dev/pci/if_fxp_pci.c')
-rw-r--r--sys/dev/pci/if_fxp_pci.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c
index f42de3dfdbe..2a7a9e0357f 100644
--- a/sys/dev/pci/if_fxp_pci.c
+++ b/sys/dev/pci/if_fxp_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_fxp_pci.c,v 1.3 2000/06/18 15:27:54 deraadt Exp $ */
+/* $OpenBSD: if_fxp_pci.c,v 1.4 2000/09/25 21:03:15 aaron Exp $ */
/*
* Copyright (c) 1995, David Greenman
@@ -119,6 +119,7 @@ fxp_pci_match(parent, match, aux)
case PCI_PRODUCT_INTEL_82557:
case PCI_PRODUCT_INTEL_82559:
case PCI_PRODUCT_INTEL_82559ER:
+ case PCI_PRODUCT_INTEL_82562:
return (1);
}