diff options
author | David Rientjes <rientjes@google.com> | 2013-11-14 18:05:32 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-11-15 02:38:30 -0500 |
commit | cc08e04c3fdcaab767b8db27527002b2b4d758cb (patch) | |
tree | 47d189b9e68a9bed595f559927015e1813750adf | |
parent | 11f918d3e2d3861b6931e97b3aa778e4984935aa (diff) |
x86: Export 'boot_cpu_physical_apicid' to modules
Commit 9ebddac7ea2a "ACPI, x86: Fix extended error log driver to depend on
CONFIG_X86_LOCAL_APIC" fixed a build error when CONFIG_X86_LOCAL_APIC was not
selected and !CONFIG_SMP.
However, since CONFIG_ACPI_EXTLOG is tristate, there is a second build error:
ERROR: "boot_cpu_physical_apicid" [drivers/acpi/acpi_extlog.ko] undefined!
The symbol needs to be exported for it to be available.
Signed-off-by: David Rientjes <rientjes@google.com>
Acked-by: Tony Luck <tony.luck@intel.com>
Cc: Chen Gong <gong.chen@linux.intel.com>
Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
Link: http://lkml.kernel.org/r/alpine.DEB.2.02.1311141504080.30112@chino.kir.corp.google.com
[ Changed it to a _GPL() export. ]
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/kernel/apic/apic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index a7eb82d9b012..befe4982198a 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c | |||
@@ -62,6 +62,7 @@ unsigned disabled_cpus; | |||
62 | 62 | ||
63 | /* Processor that is doing the boot up */ | 63 | /* Processor that is doing the boot up */ |
64 | unsigned int boot_cpu_physical_apicid = -1U; | 64 | unsigned int boot_cpu_physical_apicid = -1U; |
65 | EXPORT_SYMBOL_GPL(boot_cpu_physical_apicid); | ||
65 | 66 | ||
66 | /* | 67 | /* |
67 | * The highest APIC ID seen during enumeration. | 68 | * The highest APIC ID seen during enumeration. |