diff options
-rw-r--r-- | arch/x86/include/asm/bitops.h | 2 | ||||
-rw-r--r-- | drivers/edac/mce_amd.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/bitops.h b/arch/x86/include/asm/bitops.h index b97596e2b68c..a6983b277220 100644 --- a/arch/x86/include/asm/bitops.h +++ b/arch/x86/include/asm/bitops.h | |||
@@ -15,6 +15,8 @@ | |||
15 | #include <linux/compiler.h> | 15 | #include <linux/compiler.h> |
16 | #include <asm/alternative.h> | 16 | #include <asm/alternative.h> |
17 | 17 | ||
18 | #define BIT_64(n) (U64_C(1) << (n)) | ||
19 | |||
18 | /* | 20 | /* |
19 | * These have to be done with inline assembly: that way the bit-setting | 21 | * These have to be done with inline assembly: that way the bit-setting |
20 | * is guaranteed to be atomic. All bit operations return 0 if the bit | 22 | * is guaranteed to be atomic. All bit operations return 0 if the bit |
diff --git a/drivers/edac/mce_amd.h b/drivers/edac/mce_amd.h index c6074c5cd1ef..8c87a5e87057 100644 --- a/drivers/edac/mce_amd.h +++ b/drivers/edac/mce_amd.h | |||
@@ -5,8 +5,6 @@ | |||
5 | 5 | ||
6 | #include <asm/mce.h> | 6 | #include <asm/mce.h> |
7 | 7 | ||
8 | #define BIT_64(n) (U64_C(1) << (n)) | ||
9 | |||
10 | #define EC(x) ((x) & 0xffff) | 8 | #define EC(x) ((x) & 0xffff) |
11 | #define XEC(x, mask) (((x) >> 16) & mask) | 9 | #define XEC(x, mask) (((x) >> 16) & mask) |
12 | 10 | ||