]> Git Repo - linux.git/commitdiff
cpufreq: ia64: don't set .driver_data to index
authorViresh Kumar <[email protected]>
Fri, 28 Mar 2014 13:41:44 +0000 (19:11 +0530)
committerRafael J. Wysocki <[email protected]>
Mon, 7 Apr 2014 12:43:49 +0000 (14:43 +0200)
.driver_data field is only required to be filled if drivers want to
preserve some data in there which they can use according to the value
of .frequency. But this driver isn't using this field at all, but just
setting it equal to the index value. Which isn't required. Fix it.

Signed-off-by: Viresh Kumar <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
drivers/cpufreq/ia64-acpi-cpufreq.c

index a22b5d182e0eb1767f96fd65063d1eebc935ec7c..beb191b589d46e87d1132155f488a81301626960 100644 (file)
@@ -275,7 +275,6 @@ acpi_cpufreq_cpu_init (
        /* table init */
        for (i = 0; i <= data->acpi_data.state_count; i++)
        {
-               data->freq_table[i].driver_data = i;
                if (i < data->acpi_data.state_count) {
                        data->freq_table[i].frequency =
                              data->acpi_data.states[i].core_frequency * 1000;
This page took 0.089872 seconds and 4 git commands to generate.