ia64/xen-unstable
changeset 19829:e6c7d6398d38
x86 mca: Fix typo of MCA recovery flags
The following patch fixes typo of MCA recovery flags.
It should be '<<' instead of '<'.
Signed-off-by: Kazuhiro Suzuki <kaz@jp.fujitsu.com>
The following patch fixes typo of MCA recovery flags.
It should be '<<' instead of '<'.
Signed-off-by: Kazuhiro Suzuki <kaz@jp.fujitsu.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Wed Jun 24 11:16:08 2009 +0100 (2009-06-24) |
parents | 180ae4bca33e |
children | e7a585e69ce3 |
files | xen/arch/x86/cpu/mcheck/x86_mca.h |
line diff
1.1 --- a/xen/arch/x86/cpu/mcheck/x86_mca.h Wed Jun 24 11:15:31 2009 +0100 1.2 +++ b/xen/arch/x86/cpu/mcheck/x86_mca.h Wed Jun 24 11:16:08 2009 +0100 1.3 @@ -105,13 +105,13 @@ DECLARE_PER_CPU(cpu_banks_t, mce_banks_o 1.4 */ 1.5 1.6 /* MCA error has been recovered successfully by the recovery action*/ 1.7 -#define MCA_RECOVERED (0x1 < 0) 1.8 +#define MCA_RECOVERED (0x1 << 0) 1.9 /* MCA error impact the specified DOMAIN in owner field below */ 1.10 -#define MCA_OWNER (0x1 < 1) 1.11 +#define MCA_OWNER (0x1 << 1) 1.12 /* MCA error can't be recovered and need reset */ 1.13 -#define MCA_NEED_RESET (0x1 < 2) 1.14 +#define MCA_NEED_RESET (0x1 << 2) 1.15 /* MCA error did not have any action yet */ 1.16 -#define MCA_NO_ACTION (0x1 < 3) 1.17 +#define MCA_NO_ACTION (0x1 << 3) 1.18 1.19 struct mca_handle_result 1.20 {