diff options
Diffstat (limited to 'sys/arch/mvme88k/include/intr.h')
-rw-r--r-- | sys/arch/mvme88k/include/intr.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/include/intr.h b/sys/arch/mvme88k/include/intr.h index 940b2fc36e0..ca550ab6de9 100644 --- a/sys/arch/mvme88k/include/intr.h +++ b/sys/arch/mvme88k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.4 2001/11/21 19:04:52 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.5 2001/12/13 08:55:51 smurph Exp $ */ /* * Copyright (C) 2000 Steve Murphree, Jr. * All rights reserved. @@ -71,9 +71,8 @@ extern int intrcnt[M88K_NIRQ]; #define IPL_SOFTNET 1 #define IPL_BIO 2 #define IPL_NET 3 -#define IPL_IMP 3 #define IPL_TTY 3 -#define IPL_VM 3 +#define IPL_IMP 4 #define IPL_CLOCK 5 #define IPL_STATCLOCK 5 #define IPL_HIGH 6 @@ -114,7 +113,7 @@ above... #define splclock() setipl(IPL_CLOCK) #define splstatclock() setipl(IPL_STATCLOCK) #define splimp() setipl(IPL_IMP) -#define splvm() setipl(IPL_VM) +#define splvm() setipl(IPL_IMP) #define splhigh() setipl(IPL_HIGH) #define splx(x) ((x) ? setipl((x)) : spl0()) |