Commit 21335d02 authored by Luis Henriques's avatar Luis Henriques Committed by Dave Jones

[CPUFREQ] powernow-k8.c: mess cleanup

Mess cleanup in powernow_k8_acpi_pst_values() function.
Signed-off-by: default avatarLuis Henriques <henrix@sapo.pt>
Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent 4f4d1ad6
/* /*
* (c) 2003-2006 Advanced Micro Devices, Inc. * (c) 2003-2006 Advanced Micro Devices, Inc.
* Your use of this code is subject to the terms and conditions of the * Your use of this code is subject to the terms and conditions of the
...@@ -823,13 +824,14 @@ static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data, ...@@ -823,13 +824,14 @@ static void powernow_k8_acpi_pst_values(struct powernow_k8_data *data,
if (!data->acpi_data.state_count || (cpu_family == CPU_HW_PSTATE)) if (!data->acpi_data.state_count || (cpu_family == CPU_HW_PSTATE))
return; return;
control = data->acpi_data.states[index].control; data->irt = (control control = data->acpi_data.states[index].control;
>> IRT_SHIFT) & IRT_MASK; data->rvo = (control >> data->irt = (control >> IRT_SHIFT) & IRT_MASK;
RVO_SHIFT) & RVO_MASK; data->exttype = (control data->rvo = (control >> RVO_SHIFT) & RVO_MASK;
>> EXT_TYPE_SHIFT) & EXT_TYPE_MASK; data->exttype = (control >> EXT_TYPE_SHIFT) & EXT_TYPE_MASK;
data->plllock = (control >> PLL_L_SHIFT) & PLL_L_MASK; data->vidmvs = 1 data->plllock = (control >> PLL_L_SHIFT) & PLL_L_MASK;
<< ((control >> MVS_SHIFT) & MVS_MASK); data->vstable = data->vidmvs = 1 << ((control >> MVS_SHIFT) & MVS_MASK);
(control >> VST_SHIFT) & VST_MASK; } data->vstable = (control >> VST_SHIFT) & VST_MASK;
}
static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data) static int powernow_k8_cpu_init_acpi(struct powernow_k8_data *data)
{ {
......
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