diff options
| author | Len Brown <len.brown@intel.com> | 2009-04-05 02:14:15 -0400 | 
|---|---|---|
| committer | Len Brown <len.brown@intel.com> | 2009-04-05 02:14:15 -0400 | 
| commit | 478c6a43fcbc6c11609f8cee7c7b57223907754f (patch) | |
| tree | a7f7952099da60d33032aed6de9c0c56c9f8779e /drivers/acpi/processor_perflib.c | |
| parent | 8a3f257c704e02aee9869decd069a806b45be3f1 (diff) | |
| parent | 6bb597507f9839b13498781e481f5458aea33620 (diff) | |
| download | olio-linux-3.10-478c6a43fcbc6c11609f8cee7c7b57223907754f.tar.xz olio-linux-3.10-478c6a43fcbc6c11609f8cee7c7b57223907754f.zip  | |
Merge branch 'linus' into release
Conflicts:
	arch/x86/kernel/cpu/cpufreq/longhaul.c
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/processor_perflib.c')
| -rw-r--r-- | drivers/acpi/processor_perflib.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c index 215f1bf7d4c..cafb41000f6 100644 --- a/drivers/acpi/processor_perflib.c +++ b/drivers/acpi/processor_perflib.c @@ -524,7 +524,7 @@ int acpi_processor_preregister_performance(  			goto err_out;  		} -		if (!performance || !percpu_ptr(performance, i)) { +		if (!performance || !per_cpu_ptr(performance, i)) {  			retval = -EINVAL;  			goto err_out;  		} @@ -536,7 +536,7 @@ int acpi_processor_preregister_performance(  		if (!pr)  			continue; -		pr->performance = percpu_ptr(performance, i); +		pr->performance = per_cpu_ptr(performance, i);  		cpumask_set_cpu(i, pr->performance->shared_cpu_map);  		if (acpi_processor_get_psd(pr)) {  			retval = -EINVAL;  |