Skip to content

Commit

Permalink
[CPUFREQ] Fix another redundant initialisation in freq_table
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Jones <davej@redhat.com>
  • Loading branch information
Dave Jones committed May 30, 2006
1 parent 355eb31 commit 5557976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/cpufreq/freq_table.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ int cpufreq_frequency_table_verify(struct cpufreq_policy *policy,
struct cpufreq_frequency_table *table)
{
unsigned int next_larger = ~0;
unsigned int i = 0;
unsigned int i;
unsigned int count = 0;

dprintk("request for verification of policy (%u - %u kHz) for cpu %u\n", policy->min, policy->max, policy->cpu);
Expand Down

0 comments on commit 5557976

Please sign in to comment.