Remove unused static mn_timeout.

This commit is contained in:
Roman Divacky 2012-11-09 14:14:51 +00:00
parent 36e335c161
commit 73a19e6564
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=242824

View File

@ -1254,24 +1254,6 @@ mn_intr(void *xsc)
sc->m32x->stat = stat;
}
static void
mn_timeout(void *xsc)
{
static int round = 0;
struct mn_softc *sc;
mn_intr(xsc);
sc = xsc;
timeout(mn_timeout, xsc, 10 * hz);
round++;
if (round == 2) {
sc->m32_mem.ccb = 0x00008004;
sc->m32x->cmd = 0x1;
} else if (round > 2) {
printf("%s: timeout\n", sc->name);
}
}
/*
* PCI initialization stuff
*/