diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-04-17 18:28:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-04-17 18:28:20 +0000 |
commit | 07353127125e023608e4f6edaf2bd6588ff7d5ec (patch) | |
tree | 88f7edbdd307449a4b139e2ae99679774a964877 /sys/arch | |
parent | 088173efc33e62f61f3141d60f4ccfc5aa9b1201 (diff) |
Do not mask the MVME188 abort button interrupt at splhigh(), similar to MVME197.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mvme88k/include/mvme188.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/mvme188.h b/sys/arch/mvme88k/include/mvme188.h index 43af4ceab2c..8a7a03ec0a2 100644 --- a/sys/arch/mvme88k/include/mvme188.h +++ b/sys/arch/mvme88k/include/mvme188.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mvme188.h,v 1.24 2006/04/17 18:26:28 miod Exp $ */ +/* $OpenBSD: mvme188.h,v 1.25 2006/04/17 18:28:19 miod Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * All rights reserved. @@ -181,7 +181,7 @@ #define MASK_LVL_4 (LVL7 | LVL6 | LVL5) #define MASK_LVL_5 (LVL7 | LVL6) #define MASK_LVL_6 (LVL7) -#define MASK_LVL_7 0x00000000 /* all ints disabled */ +#define MASK_LVL_7 (IRQ_ABORT) #define INT_LEVEL 8 /* # of interrupt level + 1 */ #define ISR_GET_CURRENT_MASK(cpu) \ |