Correct disabling checksum offloading for BCM5700 B0.

This commit is contained in:
yongari 2009-11-09 00:16:50 +00:00
parent 194a571c6e
commit a3a7d63dc2

View File

@ -2743,7 +2743,7 @@ bge_attach(device_t dev)
*/
if (sc->bge_chipid == BGE_CHIPID_BCM5700_B0) {
ifp->if_capabilities &= ~IFCAP_HWCSUM;
ifp->if_capenable &= IFCAP_HWCSUM;
ifp->if_capenable &= ~IFCAP_HWCSUM;
ifp->if_hwassist = 0;
}