aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/lguest
diff options
context:
space:
mode:
authorBorislav Petkov <bp@alien8.de>2012-10-17 06:05:33 -0400
committerBorislav Petkov <bp@alien8.de>2012-10-26 08:37:58 -0400
commit1462594bf2866c1dc80066ed6f49f4331c551901 (patch)
tree361b807d85cde6b70ccc232f9aaf4079793a63b1 /arch/x86/lguest
parent7af19e4afdafa4adb5fffc569d5bb1c5e568ba98 (diff)
x86, MCA: Finish mca_config conversion
mce_ser, mce_bios_cmci_threshold and mce_disabled are the last three bools which need conversion. Move them to the mca_config struct and adjust usage sites accordingly. Signed-off-by: Borislav Petkov <bp@alien8.de> Acked-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/x86/lguest')
-rw-r--r--arch/x86/lguest/boot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c
index 642d8805bc1b..df4176cdbb32 100644
--- a/arch/x86/lguest/boot.c
+++ b/arch/x86/lguest/boot.c
@@ -1412,7 +1412,7 @@ __init void lguest_init(void)
1412 1412
1413 /* We don't have features. We have puppies! Puppies! */ 1413 /* We don't have features. We have puppies! Puppies! */
1414#ifdef CONFIG_X86_MCE 1414#ifdef CONFIG_X86_MCE
1415 mce_disabled = 1; 1415 mca_cfg.disabled = true;
1416#endif 1416#endif
1417#ifdef CONFIG_ACPI 1417#ifdef CONFIG_ACPI
1418 acpi_disabled = 1; 1418 acpi_disabled = 1;