Commit 630681b4 authored by Russell King's avatar Russell King

[ARM] Fix integrator cpufreq build errors

parent 7bce586f
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
* CPU support functions * CPU support functions
*/ */
#include <linux/config.h> #include <linux/config.h>
#include <linux/module.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/cpufreq.h> #include <linux/cpufreq.h>
...@@ -173,9 +174,9 @@ static int integrator_set_target(struct cpufreq_policy *policy, ...@@ -173,9 +174,9 @@ static int integrator_set_target(struct cpufreq_policy *policy,
return 0; return 0;
} }
static int integrator_cpufreq_init(struct cpufreq *policy) static int integrator_cpufreq_init(struct cpufreq_policy *policy)
{ {
unsigned long cus_allowed; unsigned long cpus_allowed;
unsigned int cpu = policy->cpu; unsigned int cpu = policy->cpu;
u_int cm_osc, cm_stat, mem_freq_khz; u_int cm_osc, cm_stat, mem_freq_khz;
struct vco vco; struct vco vco;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment