summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorbrad <brad@openbsd.org>2006-06-27 16:40:11 +0000
committerbrad <brad@openbsd.org>2006-06-27 16:40:11 +0000
commitf1e58a2961bb0c39c0dec235453e2e79e4fa95e6 (patch)
tree12abbff1c8fdc3c9c6431cce0d841f57d907bfd6 /sys
parent97 merger; from king of nynex (diff)
downloadwireguard-openbsd-f1e58a2961bb0c39c0dec235453e2e79e4fa95e6.tar.xz
wireguard-openbsd-f1e58a2961bb0c39c0dec235453e2e79e4fa95e6.zip
Disable Jumbos on the 5714 family of chips for now. The bge driver assumes
that all chips which have Jumbo capability have a separate Jumbo receive ring. It seems as if the 5714 family has done away with the separate receive ring, according to the Linux driver.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_bge.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c
index 3a5f01d1e27..53f109fb42e 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.162 2006/06/22 04:15:47 brad Exp $ */
+/* $OpenBSD: if_bge.c,v 1.163 2006/06/27 16:40:11 brad Exp $ */
/*
* Copyright (c) 2001 Wind River Systems
@@ -289,9 +289,6 @@ const struct pci_matchid bge_devices[] = {
(BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5700 || \
BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5701 || \
BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5703 || \
- BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5714_A0 || \
- BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5780 || \
- BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5714 || \
BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5704)