Commit b6571da9 authored by Dave Jones's avatar Dave Jones

[CPUFREQ] Remove pointless reinitialisations in acpi-cpufreq

Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent 83844510
...@@ -104,7 +104,7 @@ acpi_processor_set_performance ( ...@@ -104,7 +104,7 @@ acpi_processor_set_performance (
{ {
u16 port = 0; u16 port = 0;
u8 bit_width = 0; u8 bit_width = 0;
int ret = 0; int ret;
u32 value = 0; u32 value = 0;
int i = 0; int i = 0;
struct cpufreq_freqs cpufreq_freqs; struct cpufreq_freqs cpufreq_freqs;
...@@ -195,7 +195,6 @@ acpi_processor_set_performance ( ...@@ -195,7 +195,6 @@ acpi_processor_set_performance (
udelay(10); udelay(10);
} }
} else { } else {
i = 0;
value = (u32) data->acpi_data.states[state].status; value = (u32) data->acpi_data.states[state].status;
} }
......
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