diff --git a/sys/dev/mfi/mfi.c b/sys/dev/mfi/mfi.c index 556d2a9a3fbe..3158cd096589 100644 --- a/sys/dev/mfi/mfi.c +++ b/sys/dev/mfi/mfi.c @@ -3695,7 +3695,7 @@ mfi_dump_all(void) struct mfi_command *cm; devclass_t dc; time_t deadline; - int timedout; + int timedout __unused; int i; dc = devclass_find("mfi"); @@ -3739,7 +3739,7 @@ mfi_timeout(void *data) struct mfi_softc *sc = (struct mfi_softc *)data; struct mfi_command *cm, *tmp; time_t deadline; - int timedout = 0; + int timedout __unused = 0; deadline = time_uptime - mfi_cmd_timeout; if (sc->adpreset == 0) {