diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-06-27 16:40:12 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-06-27 16:40:12 +0000 |
commit | e1002bb1c046aad9fb64783f2511875d32210987 (patch) | |
tree | ba4da59a85822a5dda0546a6b929027bb52e422d /sys | |
parent | 6293b91e28e02802e9dc0546bba232b23ece28d7 (diff) |
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.c | 5 |
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) |