Commit 14e8b22d authored by Dave Jones's avatar Dave Jones Committed by Dave Jones

[CPUFREQ] clear defaults before powernow-k7 acpi fallback

Decoding the legacy tables may have set these values.
parent 8a9a9b4e
......@@ -565,6 +565,9 @@ static int __init powernow_cpu_init (struct cpufreq_policy *policy)
result = powernow_decode_bios(fidvidstatus.bits.MFID, fidvidstatus.bits.SVID);
if (result) {
printk (KERN_INFO PFX "Trying ACPI perflib\n");
maximum_speed = 0;
minimum_speed = -1;
latency = 0;
result = powernow_acpi_init();
if (result) {
printk (KERN_INFO PFX "ACPI and legacy methods failed\n");
......
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