summaryrefslogtreecommitdiff
path: root/sys/arch/atari/include
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2001-04-13 23:29:55 +0000
committerthorpej <thorpej@NetBSD.org>2001-04-13 23:29:55 +0000
commitbf2dcec4f57c4046eb96712cd604e3b9edc70fcf (patch)
tree57f38d1e13b618d45cf06d74b218fbda9ace888f /sys/arch/atari/include
parent12f6faba63ee077f2fc68966706ebce934eaf929 (diff)
Remove the use of splimp() from the NetBSD kernel. splnet()
and only splnet() is allowed for the protection of data structures used by network devices.
Diffstat (limited to 'sys/arch/atari/include')
-rw-r--r--sys/arch/atari/include/intr.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/atari/include/intr.h b/sys/arch/atari/include/intr.h
index 2d697569380..9944f23b702 100644
--- a/sys/arch/atari/include/intr.h
+++ b/sys/arch/atari/include/intr.h
@@ -1,4 +1,4 @@
-/* $NetBSD: intr.h,v 1.10 2001/01/14 02:00:39 thorpej Exp $ */
+/* $NetBSD: intr.h,v 1.11 2001/04/13 23:29:59 thorpej Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -65,7 +65,6 @@
#define splbio() _splraise(PSL_S|PSL_IPL3)
#define splnet() _splraise(PSL_S|PSL_IPL3)
#define spltty() _splraise(PSL_S|PSL_IPL4)
-#define splimp() _splraise(PSL_S|PSL_IPL4)
#define splvm() _splraise(PSL_S|PSL_IPL4)
#define spllpt() spltty()