summaryrefslogtreecommitdiff
path: root/sys/dev/rc
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2002-01-05 08:47:13 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2002-01-05 08:47:13 +0000
commitc86b6ff551d4e38e75a3316171383de5b00c7c48 (patch)
tree619ee98d73f5552ae93c3c8fee5af6b40ff37908 /sys/dev/rc
parent422f61655f0b6793c00d38cd362c76acf4462877 (diff)
Notes
Diffstat (limited to 'sys/dev/rc')
-rw-r--r--sys/dev/rc/rc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c
index 59e8dff9a3f2..d9bd2adc6b5a 100644
--- a/sys/dev/rc/rc.c
+++ b/sys/dev/rc/rc.c
@@ -362,7 +362,7 @@ rcintr(unit)
optr++;
rc_scheduled_event++;
if (val != 0 && val == rc->rc_hotchar)
- swi_sched(rc_ih, SWI_NOSWITCH);
+ swi_sched(rc_ih, 0);
}
} else {
/* Store also status data */
@@ -393,7 +393,7 @@ rcintr(unit)
&& (rc->rc_tp->t_iflag & INPCK))))
val = 0;
else if (val != 0 && val == rc->rc_hotchar)
- swi_sched(rc_ih, SWI_NOSWITCH);
+ swi_sched(rc_ih, 0);
optr[0] = val;
optr[INPUT_FLAGS_SHIFT] = iack;
optr++;
@@ -440,7 +440,7 @@ rcintr(unit)
if ((iack & MCR_CDchg) && !(rc->rc_flags & RC_MODCHG)) {
rc_scheduled_event += LOTS_OF_EVENTS;
rc->rc_flags |= RC_MODCHG;
- swi_sched(rc_ih, SWI_NOSWITCH);
+ swi_sched(rc_ih, 0);
}
goto more_intrs;
}
@@ -481,7 +481,7 @@ rcintr(unit)
if (!(rc->rc_flags & RC_DOXXFER)) {
rc_scheduled_event += LOTS_OF_EVENTS;
rc->rc_flags |= RC_DOXXFER;
- swi_sched(rc_ih, SWI_NOSWITCH);
+ swi_sched(rc_ih, 0);
}
}
}