Don't enable the workaround for the jitter bug on the 5722.

Obtained from:	Linux tg3 driver
This commit is contained in:
John Baldwin 2008-03-11 15:05:54 +00:00
parent 24ba015813
commit 4fcf220b00

View File

@ -2313,9 +2313,10 @@ bge_attach(device_t dev)
if (BGE_IS_5705_PLUS(sc) &&
!(sc->bge_flags & BGE_FLAG_ADJUST_TRIM)) {
if (sc->bge_asicrev == BGE_ASICREV_BCM5755 ||
sc->bge_asicrev == BGE_ASICREV_BCM5787)
sc->bge_flags |= BGE_FLAG_JITTER_BUG;
else
sc->bge_asicrev == BGE_ASICREV_BCM5787) {
if (sc->bge_chipid != BGE_CHIPID_BCM5722_A0)
sc->bge_flags |= BGE_FLAG_JITTER_BUG;
} else
sc->bge_flags |= BGE_FLAG_BER_BUG;
}