Fix a typo when accounting for tx_broadcast statistics.

Submitted by:	Paul A. Patience <paul-a patience polymtl ca>
MFC after:	2 weeks
Approved by:	re (hrs)
This commit is contained in:
Xin LI 2013-09-17 18:46:10 +00:00
parent aaa3016924
commit 040f9b1e84

View File

@ -3260,7 +3260,7 @@ nfe_stats_update(struct nfe_softc *sc)
if ((sc->nfe_flags & NFE_MIB_V3) != 0) {
stats->tx_unicast += NFE_READ(sc, NFE_TX_UNICAST);
stats->tx_multicast += NFE_READ(sc, NFE_TX_MULTICAST);
stats->rx_broadcast += NFE_READ(sc, NFE_TX_BROADCAST);
stats->tx_broadcast += NFE_READ(sc, NFE_TX_BROADCAST);
}
}