Remember to re-arm the timeout for the tick routine.

This commit is contained in:
Bill Paul 1999-09-06 19:42:02 +00:00
parent 4693f9cbd5
commit f5dbc00887
2 changed files with 3 additions and 0 deletions

View File

@ -1226,6 +1226,8 @@ static void dm_tick(xsc)
mii = device_get_softc(sc->dm_miibus);
mii_tick(mii);
sc->dm_stat_ch = timeout(dm_tick, sc, hz);
splx(s);
return;

View File

@ -1021,6 +1021,7 @@ static void sis_tick(xsc)
sc = xsc;
mii = device_get_softc(sc->sis_miibus);
mii_tick(mii);
sc->sis_stat_ch = timeout(sis_tick, sc, hz);
splx(s);