diff options
Diffstat (limited to 'arch/s390/include/asm/nmi.h')
-rw-r--r-- | arch/s390/include/asm/nmi.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/s390/include/asm/nmi.h b/arch/s390/include/asm/nmi.h index 1e5dc4537bf2..b160da8fa14b 100644 --- a/arch/s390/include/asm/nmi.h +++ b/arch/s390/include/asm/nmi.h | |||
@@ -12,7 +12,7 @@ | |||
12 | #ifndef _ASM_S390_NMI_H | 12 | #ifndef _ASM_S390_NMI_H |
13 | #define _ASM_S390_NMI_H | 13 | #define _ASM_S390_NMI_H |
14 | 14 | ||
15 | #include <linux/const.h> | 15 | #include <linux/bits.h> |
16 | #include <linux/types.h> | 16 | #include <linux/types.h> |
17 | 17 | ||
18 | #define MCIC_SUBCLASS_MASK (1ULL<<63 | 1ULL<<62 | 1ULL<<61 | \ | 18 | #define MCIC_SUBCLASS_MASK (1ULL<<63 | 1ULL<<62 | 1ULL<<61 | \ |
@@ -20,15 +20,15 @@ | |||
20 | 1ULL<<55 | 1ULL<<54 | 1ULL<<53 | \ | 20 | 1ULL<<55 | 1ULL<<54 | 1ULL<<53 | \ |
21 | 1ULL<<52 | 1ULL<<47 | 1ULL<<46 | \ | 21 | 1ULL<<52 | 1ULL<<47 | 1ULL<<46 | \ |
22 | 1ULL<<45 | 1ULL<<44) | 22 | 1ULL<<45 | 1ULL<<44) |
23 | #define MCCK_CODE_SYSTEM_DAMAGE _BITUL(63) | 23 | #define MCCK_CODE_SYSTEM_DAMAGE BIT(63) |
24 | #define MCCK_CODE_EXT_DAMAGE _BITUL(63 - 5) | 24 | #define MCCK_CODE_EXT_DAMAGE BIT(63 - 5) |
25 | #define MCCK_CODE_CP _BITUL(63 - 9) | 25 | #define MCCK_CODE_CP BIT(63 - 9) |
26 | #define MCCK_CODE_CPU_TIMER_VALID _BITUL(63 - 46) | 26 | #define MCCK_CODE_CPU_TIMER_VALID BIT(63 - 46) |
27 | #define MCCK_CODE_PSW_MWP_VALID _BITUL(63 - 20) | 27 | #define MCCK_CODE_PSW_MWP_VALID BIT(63 - 20) |
28 | #define MCCK_CODE_PSW_IA_VALID _BITUL(63 - 23) | 28 | #define MCCK_CODE_PSW_IA_VALID BIT(63 - 23) |
29 | #define MCCK_CODE_CR_VALID _BITUL(63 - 29) | 29 | #define MCCK_CODE_CR_VALID BIT(63 - 29) |
30 | #define MCCK_CODE_GS_VALID _BITUL(63 - 36) | 30 | #define MCCK_CODE_GS_VALID BIT(63 - 36) |
31 | #define MCCK_CODE_FC_VALID _BITUL(63 - 43) | 31 | #define MCCK_CODE_FC_VALID BIT(63 - 43) |
32 | 32 | ||
33 | #ifndef __ASSEMBLY__ | 33 | #ifndef __ASSEMBLY__ |
34 | 34 | ||