Source
421
421
/* setup basic struct for cpufreq API */
422
422
policy->cpu = 0;
423
423
424
424
if (max_duration < POLICY_MIN_DIV)
425
425
policy->min = maxfreq / max_duration;
426
426
else
427
427
policy->min = maxfreq / POLICY_MIN_DIV;
428
428
policy->max = maxfreq;
429
429
policy->cpuinfo.min_freq = maxfreq / max_duration;
430
430
policy->cpuinfo.max_freq = maxfreq;
431
-
policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL;
432
431
433
432
return 0;
434
433
}
435
434
436
435
/*
437
436
* cpufreq_gx_init:
438
437
* MediaGX/Geode GX initialize cpufreq driver
439
438
*/
440
439
static struct cpufreq_driver gx_suspmod_driver = {
440
+
.flags = CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING,
441
441
.get = gx_get_cpuspeed,
442
442
.verify = cpufreq_gx_verify,
443
443
.target = cpufreq_gx_target,
444
444
.init = cpufreq_gx_cpu_init,
445
445
.name = "gx-suspmod",
446
446
};
447
447
448
448
static int __init cpufreq_gx_init(void)
449
449
{
450
450
int ret;