From 07e0d5dea13066d5b2452edbe9db16ad78ce77bf Mon Sep 17 00:00:00 2001 From: rdivacky Date: Fri, 9 Nov 2012 14:14:51 +0000 Subject: Remove unused static mn_timeout. --- sys/dev/mn/if_mn.c | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/sys/dev/mn/if_mn.c b/sys/dev/mn/if_mn.c index e8b3dc6..07c2a98 100644 --- a/sys/dev/mn/if_mn.c +++ b/sys/dev/mn/if_mn.c @@ -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 */ -- cgit v1.1