#ifdef CONFIG_ACPI_BOOT
extern int __initdata acpi_ht;
extern acpi_interrupt_flags acpi_sci_flags;
-/* int __initdata acpi_force = 0; */
+int __initdata acpi_force = 0;
#endif
/* For PCI or other memory-mapped resources */
if (!memcmp(from, "acpi=force", 10)) {
/* add later when we do DMI horrors: */
- /* acpi_force = 1; */
+ acpi_force = 1;
acpi_disabled = 0;
}
/* acpi=ht just means: do ACPI MADT parsing
at bootup, but don't enable the full ACPI interpreter */
if (!memcmp(from, "acpi=ht", 7)) {
- /* if (!acpi_force) */
+ if (!acpi_force)
disable_acpi();
acpi_ht = 1;
}