diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-03-12 03:28:29 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-03-12 03:28:29 +0000 |
commit | e5ddf1bc7c258926f91b57321f8c58eda788cfd6 (patch) | |
tree | f985f15c635b8d141da9baacbdd2fb904be2371c /sys/arch/mvme68k/include | |
parent | e2c4c393c499d80cc9cba8a6feb3b78a2ed4425b (diff) |
remove splimp().
Diffstat (limited to 'sys/arch/mvme68k/include')
-rw-r--r-- | sys/arch/mvme68k/include/intr.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/include/intr.h b/sys/arch/mvme68k/include/intr.h index 83380d0f1b1..68324d79560 100644 --- a/sys/arch/mvme68k/include/intr.h +++ b/sys/arch/mvme68k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.12 2005/05/01 09:55:49 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.13 2006/03/12 03:28:28 brad Exp $ */ /* * Copyright (C) 2000 Steve Murphree, Jr. * All rights reserved. @@ -97,7 +97,6 @@ u_long allocate_sir(void (*proc)(void *), void *arg); #define splsoftnet() splsoft() #define splbio() _splraise(PSL_S | PSL_IPL2) #define splnet() _splraise(PSL_S | PSL_IPL3) -#define splimp() _splraise(PSL_S | PSL_IPL3) #define spltty() _splraise(PSL_S | PSL_IPL3) #define splvm() _splraise(PSL_S | PSL_IPL3) #define splclock() _splraise(PSL_S | PSL_IPL5) |