summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2007-05-22 22:08:58 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2007-05-22 22:08:58 +0000
commitae5cd5ede9b8a1308a5e04a995d4548a799b11d4 (patch)
tree98c3f23dd6c0b6073e39fff04d875dce6d90e9c1 /sys
parent7172fa596a327482280248efe072beb03f23d718 (diff)
Add the BCM5709 PCI device Id. It is disabled for now since we do not
support SerDes-based (1000base-SX fibre) bnx(4) devices yet. The reason is simple - we do not have any fibre bnx(4) to test and port the SerDes changes from the other bnx drivers. From brad found in the Linux driver
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_bnx.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bnx.c b/sys/dev/pci/if_bnx.c
index beb16187209..4550b021718 100644
--- a/sys/dev/pci/if_bnx.c
+++ b/sys/dev/pci/if_bnx.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bnx.c,v 1.51 2007/05/22 16:51:34 jasper Exp $ */
+/* $OpenBSD: if_bnx.c,v 1.52 2007/05/22 22:08:57 reyk Exp $ */
/*-
* Copyright (c) 2006 Broadcom Corporation
@@ -191,7 +191,8 @@ const struct pci_matchid bnx_devices[] = {
{ PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM5708 },
{ PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM5708S }
#if 0
- { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM5709 }
+ { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM5709 },
+ { PCI_VENDOR_BROADCOM, PCI_PRODUCT_BROADCOM_BCM5709S }
#endif
};