|
@@ -74,7 +74,7 @@ static unsigned int num_processors = 0;
|
|
|
physid_mask_t phys_cpu_present_map = PHYSID_MASK_NONE;
|
|
|
|
|
|
/* ACPI MADT entry parsing functions */
|
|
|
-#ifdef CONFIG_ACPI_BOOT
|
|
|
+#ifdef CONFIG_ACPI
|
|
|
extern struct acpi_boot_flags acpi_boot;
|
|
|
#ifdef CONFIG_X86_LOCAL_APIC
|
|
|
extern int acpi_parse_lapic (acpi_table_entry_header *header);
|
|
@@ -84,7 +84,7 @@ extern int acpi_parse_lapic_nmi (acpi_table_entry_header *header);
|
|
|
#ifdef CONFIG_X86_IO_APIC
|
|
|
extern int acpi_parse_ioapic (acpi_table_entry_header *header);
|
|
|
#endif /*CONFIG_X86_IO_APIC*/
|
|
|
-#endif /*CONFIG_ACPI_BOOT*/
|
|
|
+#endif /*CONFIG_ACPI*/
|
|
|
|
|
|
u8 bios_cpu_apicid[NR_CPUS] = { [0 ... NR_CPUS-1] = BAD_APICID };
|
|
|
|
|
@@ -519,8 +519,6 @@ void __init get_smp_config (void)
|
|
|
struct intel_mp_floating *mpf = mpf_found;
|
|
|
|
|
|
/*
|
|
|
- * ACPI may be used to obtain the entire SMP configuration or just to
|
|
|
- * enumerate/configure processors (CONFIG_ACPI_BOOT). Note that
|
|
|
* ACPI supports both logical (e.g. Hyper-Threading) and physical
|
|
|
* processors, where MPS only supports physical.
|
|
|
*/
|
|
@@ -673,7 +671,7 @@ void __init find_smp_config (void)
|
|
|
ACPI-based MP Configuration
|
|
|
-------------------------------------------------------------------------- */
|
|
|
|
|
|
-#ifdef CONFIG_ACPI_BOOT
|
|
|
+#ifdef CONFIG_ACPI
|
|
|
|
|
|
void __init mp_register_lapic_address (
|
|
|
u64 address)
|
|
@@ -994,4 +992,4 @@ int mp_register_gsi(u32 gsi, int edge_level, int active_high_low)
|
|
|
}
|
|
|
|
|
|
#endif /*CONFIG_X86_IO_APIC*/
|
|
|
-#endif /*CONFIG_ACPI_BOOT*/
|
|
|
+#endif /*CONFIG_ACPI*/
|