diff options
Diffstat (limited to 'arch/s390/include/asm/processor.h')
-rw-r--r-- | arch/s390/include/asm/processor.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/s390/include/asm/processor.h b/arch/s390/include/asm/processor.h index 14883b1562e0..d56c519bc696 100644 --- a/arch/s390/include/asm/processor.h +++ b/arch/s390/include/asm/processor.h | |||
@@ -12,7 +12,7 @@ | |||
12 | #ifndef __ASM_S390_PROCESSOR_H | 12 | #ifndef __ASM_S390_PROCESSOR_H |
13 | #define __ASM_S390_PROCESSOR_H | 13 | #define __ASM_S390_PROCESSOR_H |
14 | 14 | ||
15 | #include <linux/const.h> | 15 | #include <linux/bits.h> |
16 | 16 | ||
17 | #define CIF_MCCK_PENDING 0 /* machine check handling is pending */ | 17 | #define CIF_MCCK_PENDING 0 /* machine check handling is pending */ |
18 | #define CIF_ASCE_PRIMARY 1 /* primary asce needs fixup / uaccess */ | 18 | #define CIF_ASCE_PRIMARY 1 /* primary asce needs fixup / uaccess */ |
@@ -24,15 +24,15 @@ | |||
24 | #define CIF_MCCK_GUEST 7 /* machine check happening in guest */ | 24 | #define CIF_MCCK_GUEST 7 /* machine check happening in guest */ |
25 | #define CIF_DEDICATED_CPU 8 /* this CPU is dedicated */ | 25 | #define CIF_DEDICATED_CPU 8 /* this CPU is dedicated */ |
26 | 26 | ||
27 | #define _CIF_MCCK_PENDING _BITUL(CIF_MCCK_PENDING) | 27 | #define _CIF_MCCK_PENDING BIT(CIF_MCCK_PENDING) |
28 | #define _CIF_ASCE_PRIMARY _BITUL(CIF_ASCE_PRIMARY) | 28 | #define _CIF_ASCE_PRIMARY BIT(CIF_ASCE_PRIMARY) |
29 | #define _CIF_ASCE_SECONDARY _BITUL(CIF_ASCE_SECONDARY) | 29 | #define _CIF_ASCE_SECONDARY BIT(CIF_ASCE_SECONDARY) |
30 | #define _CIF_NOHZ_DELAY _BITUL(CIF_NOHZ_DELAY) | 30 | #define _CIF_NOHZ_DELAY BIT(CIF_NOHZ_DELAY) |
31 | #define _CIF_FPU _BITUL(CIF_FPU) | 31 | #define _CIF_FPU BIT(CIF_FPU) |
32 | #define _CIF_IGNORE_IRQ _BITUL(CIF_IGNORE_IRQ) | 32 | #define _CIF_IGNORE_IRQ BIT(CIF_IGNORE_IRQ) |
33 | #define _CIF_ENABLED_WAIT _BITUL(CIF_ENABLED_WAIT) | 33 | #define _CIF_ENABLED_WAIT BIT(CIF_ENABLED_WAIT) |
34 | #define _CIF_MCCK_GUEST _BITUL(CIF_MCCK_GUEST) | 34 | #define _CIF_MCCK_GUEST BIT(CIF_MCCK_GUEST) |
35 | #define _CIF_DEDICATED_CPU _BITUL(CIF_DEDICATED_CPU) | 35 | #define _CIF_DEDICATED_CPU BIT(CIF_DEDICATED_CPU) |
36 | 36 | ||
37 | #ifndef __ASSEMBLY__ | 37 | #ifndef __ASSEMBLY__ |
38 | 38 | ||