summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/bge/if_bge.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/bge/if_bge.c b/sys/dev/bge/if_bge.c
index 6f781e8..d781779 100644
--- a/sys/dev/bge/if_bge.c
+++ b/sys/dev/bge/if_bge.c
@@ -2845,7 +2845,8 @@ bge_intr(xsc)
* effect on copper NICs.)
*/
status = CSR_READ_4(sc, BGE_MAC_STS);
- if (!(status & BGE_MACSTAT_PORT_DECODE_ERROR)) {
+ if (!(status & (BGE_MACSTAT_PORT_DECODE_ERROR|
+ BGE_MACSTAT_MI_COMPLETE))) {
sc->bge_link = 0;
untimeout(bge_tick, sc, sc->bge_stat_ch);
bge_tick(sc);
OpenPOWER on IntegriCloud