Skip to content

Commit

Permalink
[CPUFREQ] Fix compile failure in cpufreq.c
Browse files Browse the repository at this point in the history
managed_policy is out of scope for the non-smp case.
Declare it locally where used (twice)

Signed-off-by: Dave Jones <davej@redhat.com>
  • Loading branch information
Dave Jones committed Jul 8, 2009
1 parent 44b5728 commit 5e1596f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions drivers/cpufreq/cpufreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -776,9 +776,6 @@ static int cpufreq_add_dev(struct sys_device *sys_dev)
struct sys_device *cpu_sys_dev;
unsigned long flags;
unsigned int j;
#ifdef CONFIG_SMP
struct cpufreq_policy *managed_policy;
#endif

if (cpu_is_offline(cpu))
return 0;
Expand Down Expand Up @@ -854,6 +851,8 @@ static int cpufreq_add_dev(struct sys_device *sys_dev)
#endif

for_each_cpu(j, policy->cpus) {
struct cpufreq_policy *managed_policy;

if (cpu == j)
continue;

Expand Down Expand Up @@ -932,6 +931,8 @@ static int cpufreq_add_dev(struct sys_device *sys_dev)

/* symlink affected CPUs */
for_each_cpu(j, policy->cpus) {
struct cpufreq_policy *managed_policy;

if (j == cpu)
continue;
if (!cpu_online(j))
Expand Down

0 comments on commit 5e1596f

Please sign in to comment.