Commit 86cf1474948a91c67b3dd58f8b360006c82e0068

Authored by Namhyung Kim
Committed by Dave Jones
1 parent 320b2b8de1

[CPUFREQ] acpi-cpufreq: add missing __percpu markup

acpi_perf_data is a percpu pointer but was missing __percpu markup.
Add it.

Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Dave Jones <davej@redhat.com>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c
... ... @@ -72,7 +72,7 @@
72 72 static DEFINE_PER_CPU(struct acpi_cpufreq_data *, acfreq_data);
73 73  
74 74 /* acpi_perf_data is a pointer to percpu data. */
75   -static struct acpi_processor_performance *acpi_perf_data;
  75 +static struct acpi_processor_performance __percpu *acpi_perf_data;
76 76  
77 77 static struct cpufreq_driver acpi_cpufreq_driver;
78 78