Skip to content

Commit

Permalink
[CPUFREQ] Remove duplicate assignment 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 511e9ee commit 355eb31
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 @@ -20,7 +20,7 @@ int cpufreq_frequency_table_cpuinfo(struct cpufreq_policy *policy,
{
unsigned int min_freq = ~0;
unsigned int max_freq = 0;
unsigned int i = 0;
unsigned int i;

for (i=0; (table[i].frequency != CPUFREQ_TABLE_END); i++) {
unsigned int freq = table[i].frequency;
Expand Down

0 comments on commit 355eb31

Please sign in to comment.