diff --git a/sys/pci/if_pcn.c b/sys/pci/if_pcn.c index e6f3dd78e6c6..48d228e84e46 100644 --- a/sys/pci/if_pcn.c +++ b/sys/pci/if_pcn.c @@ -1400,6 +1400,10 @@ pcn_stop(sc) ifp->if_timer = 0; untimeout(pcn_tick, sc, sc->pcn_stat_ch); + + /* Turn off interrupts */ + PCN_CSR_CLRBIT(sc, PCN_CSR_CSR, PCN_CSR_INTEN); + /* Stop adapter */ PCN_CSR_SETBIT(sc, PCN_CSR_CSR, PCN_CSR_STOP); sc->pcn_link = 0;