summaryrefslogtreecommitdiff
path: root/sys/dev/nsp/nsp.c
diff options
context:
space:
mode:
authorNoriaki Mitsunaga <non@FreeBSD.org>2001-01-14 06:59:59 +0000
committerNoriaki Mitsunaga <non@FreeBSD.org>2001-01-14 06:59:59 +0000
commit2aadb6190dbba1e52d244373df956f52a31a598c (patch)
treea7dea5170fe90761a23f8108f0731e102425fa2b /sys/dev/nsp/nsp.c
parentd2cfd334c2bde23567a704840c0f5e87005caeda (diff)
Notes
Diffstat (limited to 'sys/dev/nsp/nsp.c')
-rw-r--r--sys/dev/nsp/nsp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/nsp/nsp.c b/sys/dev/nsp/nsp.c
index c2b676278513..375c8381e94b 100644
--- a/sys/dev/nsp/nsp.c
+++ b/sys/dev/nsp/nsp.c
@@ -880,7 +880,7 @@ nsp_negate_signal(sc, mask, s)
bus_space_tag_t bst = sc->sc_iot;
bus_space_handle_t bsh = sc->sc_ioh;
int tout = 0;
- int s;
+ int ss;
#ifdef __FreeBSD__
struct callout_handle ch;
#endif
@@ -899,16 +899,16 @@ nsp_negate_signal(sc, mask, s)
}
while ((regv & mask) != 0 && tout == 0);
- s = splhigh();
+ ss = splhigh();
if (tout == 0) {
#ifdef __FreeBSD__
untimeout(settimeout, &tout, ch);
#else
untimeout(settimeout, &tout);
#endif
- splx(s);
+ splx(ss);
} else {
- splx(s);
+ splx(ss);
printf("%s: %s singla off timeout \n", slp->sl_xname, s);
}