Searched refs:str_governor (Results 1 – 2 of 2) sorted by relevance
/drivers/cpufreq/ |
D | cpufreq.c | 497 static struct cpufreq_governor *__find_governor(const char *str_governor) in __find_governor() argument 502 if (!strncasecmp(str_governor, t->name, CPUFREQ_NAME_LEN)) in __find_governor() 511 static int cpufreq_parse_governor(char *str_governor, unsigned int *policy, in cpufreq_parse_governor() argument 520 if (!strncasecmp(str_governor, "performance", CPUFREQ_NAME_LEN)) { in cpufreq_parse_governor() 523 } else if (!strncasecmp(str_governor, "powersave", in cpufreq_parse_governor() 533 t = __find_governor(str_governor); in cpufreq_parse_governor() 539 ret = request_module("cpufreq_%s", str_governor); in cpufreq_parse_governor() 543 t = __find_governor(str_governor); in cpufreq_parse_governor() 654 char str_governor[16]; in store_scaling_governor() local 661 ret = sscanf(buf, "%15s", str_governor); in store_scaling_governor() [all …]
|
/drivers/devfreq/ |
D | devfreq.c | 786 char str_governor[DEVFREQ_NAME_LEN + 1]; in governor_store() local 789 ret = sscanf(buf, "%" __stringify(DEVFREQ_NAME_LEN) "s", str_governor); in governor_store() 794 governor = find_devfreq_governor(str_governor); in governor_store()
|