diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2008-05-24 02:21:51 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2008-05-24 02:21:51 +0000 |
commit | b0f752a0ce0c5ad015409dbc9546ec714c1eed10 (patch) | |
tree | 3e2aba379f81d38f11858d48475cea32680114bf /sys/dev/pci | |
parent | 4e18c99c82624d01c055109e869694005dbb6a1b (diff) |
And another Fujitsu Gigabit Etherenet card that is a bge(4) in disguise.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_bge.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 718936a3c7c..67e8d5e5daa 100644 --- a/sys/dev/pci/if_bge.c +++ b/sys/dev/pci/if_bge.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bge.c,v 1.234 2008/05/23 22:50:06 kettenis Exp $ */ +/* $OpenBSD: if_bge.c,v 1.235 2008/05/24 02:21:50 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -268,12 +268,13 @@ const struct pci_matchid bge_devices[] = { { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM5906 }, { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM5906M }, + { PCI_VENDOR_FUJITSU, PCI_PRODUCT_FUJITSU_PW008GE4 }, { PCI_VENDOR_FUJITSU, PCI_PRODUCT_FUJITSU_PW008GE5 }, { PCI_VENDOR_FUJITSU, PCI_PRODUCT_FUJITSU_PP250_450_LAN }, { PCI_VENDOR_SCHNEIDERKOCH, PCI_PRODUCT_SCHNEIDERKOCH_SK9D21 }, - { PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3C996 }, + { PCI_VENDOR_3COM, PCI_PRODUCT_3COM_3C996 } }; #define BGE_IS_5705_OR_BEYOND(sc) \ |