diff options
author | Anton Blanchard <anton@samba.org> | 2013-08-06 12:01:20 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-08-13 21:50:21 -0400 |
commit | 594bd38303b489156c005177ccb4af52f942e2f5 (patch) | |
tree | 21c9ccae1216900ea6ce2a4314065ebc3e879db0 /arch/powerpc/include/asm/reg.h | |
parent | 230aef7a6a23b6166bd4003bfff5af23c9bd381f (diff) |
powerpc: Wrap MSR macros with parentheses
Not having parentheses around a macro is asking for trouble.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include/asm/reg.h')
-rw-r--r-- | arch/powerpc/include/asm/reg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/powerpc/include/asm/reg.h b/arch/powerpc/include/asm/reg.h index a6840e4e24f7..a312e0c8cef4 100644 --- a/arch/powerpc/include/asm/reg.h +++ b/arch/powerpc/include/asm/reg.h | |||
@@ -115,10 +115,10 @@ | |||
115 | #define MSR_64BIT MSR_SF | 115 | #define MSR_64BIT MSR_SF |
116 | 116 | ||
117 | /* Server variant */ | 117 | /* Server variant */ |
118 | #define MSR_ MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_ISF |MSR_HV | 118 | #define MSR_ (MSR_ME | MSR_RI | MSR_IR | MSR_DR | MSR_ISF |MSR_HV) |
119 | #define MSR_KERNEL MSR_ | MSR_64BIT | 119 | #define MSR_KERNEL (MSR_ | MSR_64BIT) |
120 | #define MSR_USER32 MSR_ | MSR_PR | MSR_EE | 120 | #define MSR_USER32 (MSR_ | MSR_PR | MSR_EE) |
121 | #define MSR_USER64 MSR_USER32 | MSR_64BIT | 121 | #define MSR_USER64 (MSR_USER32 | MSR_64BIT) |
122 | #elif defined(CONFIG_PPC_BOOK3S_32) || defined(CONFIG_8xx) | 122 | #elif defined(CONFIG_PPC_BOOK3S_32) || defined(CONFIG_8xx) |
123 | /* Default MSR for kernel mode. */ | 123 | /* Default MSR for kernel mode. */ |
124 | #define MSR_KERNEL (MSR_ME|MSR_RI|MSR_IR|MSR_DR) | 124 | #define MSR_KERNEL (MSR_ME|MSR_RI|MSR_IR|MSR_DR) |