diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-06-20 03:45:23 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-06-20 03:45:23 +0000 |
commit | 229075deff76afa1d5d45fcbf0f128433fcf74e0 (patch) | |
tree | 54b3a970943edee116d6431bac69e5236fcf248c /sys/dev/pci/if_bge.c | |
parent | cb7e1eaf5574ffbb587a448080a6ef695cdc497b (diff) |
add the BCM5755 and BCM5787 ASICs to the appropriate macros.
Diffstat (limited to 'sys/dev/pci/if_bge.c')
-rw-r--r-- | sys/dev/pci/if_bge.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c index 66314584e46..a62d15a35e5 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.156 2006/06/19 05:15:23 brad Exp $ */ +/* $OpenBSD: if_bge.c,v 1.157 2006/06/20 03:45:22 brad Exp $ */ /* * Copyright (c) 2001 Wind River Systems @@ -266,14 +266,18 @@ const struct pci_matchid bge_devices[] = { 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_BCM5752) + BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5752 || \ + BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5755 || \ + BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5787) #define BGE_IS_575X_PLUS(sc) \ (BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5750 || \ 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_BCM5752) + BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5752 || \ + BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5755 || \ + BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5787) #define BGE_IS_5714_FAMILY(sc) \ (BGE_ASICREV(sc->bge_chipid) == BGE_ASICREV_BCM5714_A0 || \ |