diff options
author | Ingo Molnar <mingo@kernel.org> | 2013-08-12 11:54:05 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-08-12 11:54:05 -0400 |
commit | 0237d7f355eef4d9ab8557e1597e8c9debd6c8c2 (patch) | |
tree | 753837a9fb9e3f65bc7450994159683a47f086a6 /arch/x86/kernel/acpi | |
parent | bf6c216282a260d3ce727c23fc15f28a76beff0b (diff) | |
parent | cf870c70a194443f8fc654ddc9d6cfd02c58003b (diff) |
Merge branch 'x86/mce' into x86/ras
Pursue a single RAS/MCE topic branch on x86.
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel/acpi')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index 2627a81253ee..fead83292e6e 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c | |||
@@ -67,6 +67,7 @@ EXPORT_SYMBOL(acpi_pci_disabled); | |||
67 | int acpi_lapic; | 67 | int acpi_lapic; |
68 | int acpi_ioapic; | 68 | int acpi_ioapic; |
69 | int acpi_strict; | 69 | int acpi_strict; |
70 | int acpi_disable_cmcff; | ||
70 | 71 | ||
71 | u8 acpi_sci_flags __initdata; | 72 | u8 acpi_sci_flags __initdata; |
72 | int acpi_sci_override_gsi __initdata; | 73 | int acpi_sci_override_gsi __initdata; |
@@ -1626,6 +1627,10 @@ static int __init parse_acpi(char *arg) | |||
1626 | /* "acpi=copy_dsdt" copys DSDT */ | 1627 | /* "acpi=copy_dsdt" copys DSDT */ |
1627 | else if (strcmp(arg, "copy_dsdt") == 0) { | 1628 | else if (strcmp(arg, "copy_dsdt") == 0) { |
1628 | acpi_gbl_copy_dsdt_locally = 1; | 1629 | acpi_gbl_copy_dsdt_locally = 1; |
1630 | } | ||
1631 | /* "acpi=nocmcff" disables FF mode for corrected errors */ | ||
1632 | else if (strcmp(arg, "nocmcff") == 0) { | ||
1633 | acpi_disable_cmcff = 1; | ||
1629 | } else { | 1634 | } else { |
1630 | /* Core will printk when we return error. */ | 1635 | /* Core will printk when we return error. */ |
1631 | return -EINVAL; | 1636 | return -EINVAL; |