x86/x2apic: Acpi_gbl_FADT existence depends on CONFIG_ACPI
If ACPI is disabled, acpi_gbl_FADT is not available, and and the build breaks. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Link: http://lkml.kernel.org/r/55479708.2000104@siemens.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
eb18cf55c2
commit
781674fc33
1 changed files with 2 additions and 0 deletions
|
@ -21,11 +21,13 @@ early_param("x2apic_phys", set_x2apic_phys_mode);
|
||||||
|
|
||||||
static bool x2apic_fadt_phys(void)
|
static bool x2apic_fadt_phys(void)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_ACPI
|
||||||
if ((acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) &&
|
if ((acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) &&
|
||||||
(acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) {
|
(acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) {
|
||||||
printk(KERN_DEBUG "System requires x2apic physical mode\n");
|
printk(KERN_DEBUG "System requires x2apic physical mode\n");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue