diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-05-17 19:38:53 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2013-05-17 19:38:53 +0000 |
commit | 23aa67d94df599971e63a34d1b596d5c2dcd7204 (patch) | |
tree | 27e040172442ddb70716a9160536fd2e77f23985 /sys/arch/powerpc | |
parent | e4cd83a56a360f734e9ba7092609e5b077e403e6 (diff) |
Add a dummy IPL_MPSAFE definition.
ok miod@, mikeb@
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/include/intr.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/powerpc/include/intr.h b/sys/arch/powerpc/include/intr.h index 2220b8aac71..ce2d4142d43 100644 --- a/sys/arch/powerpc/include/intr.h +++ b/sys/arch/powerpc/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.48 2012/08/21 09:24:52 kettenis Exp $ */ +/* $OpenBSD: intr.h,v 1.49 2013/05/17 19:38:52 kettenis Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom, Opsycon AB and RTMX Inc, USA. @@ -50,6 +50,8 @@ #define IPL_HIGH 11 #define IPL_NUM 12 +#define IPL_MPSAFE 0 /* no "mpsafe" interrupts */ + #define IST_NONE 0 #define IST_PULSE 1 #define IST_EDGE 2 |