Lines Matching refs:governors
256 struct cpufreq_available_governors *governors; in debug_output_one() local
323 governors = cpufreq_get_available_governors(cpu); in debug_output_one()
324 if (governors) { in debug_output_one()
326 while (governors->next) { in debug_output_one()
327 printf("%s, ", governors->governor); in debug_output_one()
328 governors = governors->next; in debug_output_one()
330 printf("%s\n", governors->governor); in debug_output_one()
331 cpufreq_put_available_governors(governors); in debug_output_one()
448 struct cpufreq_available_governors *governors = in get_available_governors() local
450 if (!governors) in get_available_governors()
453 while (governors->next) { in get_available_governors()
454 printf("%s ", governors->governor); in get_available_governors()
455 governors = governors->next; in get_available_governors()
457 printf("%s\n", governors->governor); in get_available_governors()
458 cpufreq_put_available_governors(governors); in get_available_governors()