summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1993-07-11 14:03:51 +0000
committermycroft <mycroft@NetBSD.org>1993-07-11 14:03:51 +0000
commit0daaa4f16cb176b3a6e198db6b1c55905a502caa (patch)
treee522c5cb25b83ae91f505b2fb17af1ad7173acc3 /sys/dev
parentf129a8ba77fc09e81e56ad72020d6cec3b5aba4b (diff)
Make splimp = splnet | spltty, and get rid of SLIP kluge for splnet and
spltty.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/isa/isa.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/sys/dev/isa/isa.c b/sys/dev/isa/isa.c
index 92402580288..1c90c04b469 100644
--- a/sys/dev/isa/isa.c
+++ b/sys/dev/isa/isa.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
- * $Id: isa.c,v 1.25 1993/07/07 06:52:39 cgd Exp $
+ * $Id: isa.c,v 1.26 1993/07/11 14:03:54 mycroft Exp $
*/
/*
@@ -108,11 +108,8 @@ isa_configure() {
;
for (dvp = isa_devtab_null; config_isadev(dvp, (u_int *) NULL); dvp++)
;
-#include "sl.h"
-#if NSL > 0
- netmask |= ttymask;
- ttymask |= netmask;
-#endif
+
+ impmask = ttymask | netmask;
/* and the problem is... if netmask == 0, then the loopback
* code can do some really ugly things.
@@ -124,7 +121,8 @@ isa_configure() {
netmask = 0x8000; /* same as for softclock. XXX */
/* biomask |= ttymask ; can some tty devices use buffers? */
- printf("biomask %x ttymask %x netmask %x\n", biomask, ttymask, netmask);
+ printf("biomask %x ttymask %x netmask %x impmask %x\n",
+ biomask, ttymask, netmask, impmask);
splnone();
}