diff options
| author | Borislav Petkov <bp@alien8.de> | 2012-10-17 12:05:33 +0200 | 
|---|---|---|
| committer | Borislav Petkov <bp@alien8.de> | 2012-10-26 14:37:58 +0200 | 
| commit | 1462594bf2866c1dc80066ed6f49f4331c551901 (patch) | |
| tree | 361b807d85cde6b70ccc232f9aaf4079793a63b1 /arch/x86/lguest | |
| parent | 7af19e4afdafa4adb5fffc569d5bb1c5e568ba98 (diff) | |
| download | linux-1462594bf2866c1dc80066ed6f49f4331c551901.tar.bz2 | |
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.c | 2 | 
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)  	/* We don't have features.  We have puppies!  Puppies! */  #ifdef CONFIG_X86_MCE -	mce_disabled = 1; +	mca_cfg.disabled = true;  #endif  #ifdef CONFIG_ACPI  	acpi_disabled = 1; |