Message ID | 20150219014216.1795.43121.sendpatchset@little-apple (mailing list archive) |
---|---|
State | Not Applicable |
Headers | show |
--- 0001/arch/x86/Kconfig +++ work/arch/x86/Kconfig 2015-02-19 06:07:13.605531666 +0900 @@ -138,6 +138,7 @@ config X86 select HAVE_ACPI_APEI_NMI if ACPI select ACPI_LEGACY_TABLES_LOOKUP if ACPI select X86_FEATURE_NAMES if PROC_FS + select OF config INSTRUCTION_DECODER def_bool y --- 0001/arch/x86/kernel/devicetree.c +++ work/arch/x86/kernel/devicetree.c 2015-02-19 06:22:34.375528357 +0900 @@ -150,11 +150,13 @@ static void __init dtb_lapic_setup(void) if (WARN_ON(ret)) return; +#ifdef CONFIG_X86_32 /* Did the boot loader setup the local APIC ? */ if (!cpu_has_apic) { if (apic_force_enable(r.start)) return; } +#endif smp_found_config = 1; pic_mode = 1; register_lapic_address(r.start);
From: Magnus Damm <damm+renesas@opensource.se> Select OF on x86_64 by default to allow building the OF portion of the R-Car DU driver on a 64-bit architecture. Not for upstream merge. Not-yet-Signed-off-by: Magnus Damm <damm+renesas@opensource.se> --- arch/x86/Kconfig | 1 + arch/x86/kernel/devicetree.c | 2 ++ 2 files changed, 3 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html