diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2015-09-24 18:38:59 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2015-09-24 18:38:59 +0000 |
commit | b92ef175dee01861f1f9cd3a1b38edf687c918a1 (patch) | |
tree | 0f9579789503329a9e42c79b4ea0926f2b5ecaa3 /sys/arch | |
parent | 3f7b3e77cfc4e58513781b309dabf35564938930 (diff) |
It is no longer necessary to include CR_BERR in CR_INT_MASK if CPU_R8000.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mips64/include/mips_cpu.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/mips_cpu.h b/sys/arch/mips64/include/mips_cpu.h index b7c26f6ae93..33622dfe0eb 100644 --- a/sys/arch/mips64/include/mips_cpu.h +++ b/sys/arch/mips64/include/mips_cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mips_cpu.h,v 1.1 2012/10/03 11:18:23 miod Exp $ */ +/* $OpenBSD: mips_cpu.h,v 1.2 2015/09/24 18:38:58 miod Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -171,7 +171,7 @@ #define CR_NMI 0x08000000 #ifdef CPU_R8000 -#define CR_INT_MASK 0x0407ff00 /* contains CR_BERR */ +#define CR_INT_MASK 0x0007ff00 #else #define CR_INT_MASK 0x003fff00 #endif |