diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2007-11-30 08:19:44 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2007-11-30 08:19:44 +0000 |
commit | 36de95b8cb7dd5d395215311157b6e0bbb929c3a (patch) | |
tree | 7ae88c42aeee778beeef2662ead06762556be667 /sys/arch/mac68k/include | |
parent | b57cd214a576dfa1f757505c32ca120c8479dfd6 (diff) |
Define IPL_VM on platforms which lack it.
Diffstat (limited to 'sys/arch/mac68k/include')
-rw-r--r-- | sys/arch/mac68k/include/intr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mac68k/include/intr.h b/sys/arch/mac68k/include/intr.h index 558610bec3c..b29ee66d211 100644 --- a/sys/arch/mac68k/include/intr.h +++ b/sys/arch/mac68k/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.17 2007/07/29 21:24:05 miod Exp $ */ +/* $OpenBSD: intr.h,v 1.18 2007/11/30 08:19:43 miod Exp $ */ /* $NetBSD: intr.h,v 1.9 1998/08/12 06:58:42 scottr Exp $ */ /* @@ -58,8 +58,10 @@ extern u_short mac68k_statclockipl; #define IPL_SOFTNET 1 #define IPL_SOFTCLOCK 1 #define IPL_BIO 2 +#define IPL_AUDIO PSLTOIPL(mac68k_audioipl) #define IPL_NET PSLTOIPL(mac68k_netipl) #define IPL_TTY PSLTOIPL(mac68k_ttyipl) +#define IPL_VM PSLTOIPL(mac68k_vmipl) #define IPL_CLOCK PSLTOIPL(mac68k_clockipl) #define IPL_STATCLOCK PSLTOIPL(mac68k_statclockipl) #define IPL_HIGH 7 |