Home
last modified time | relevance | path

Searched refs:CPUFREQ_RELATION_E (Results 1 – 2 of 2) sorted by relevance

/linux/include/linux/
H A Dcpufreq.h306 #define CPUFREQ_RELATION_E BIT(2) /* Get if possible an efficient frequency */ macro
308 #define CPUFREQ_RELATION_LE (CPUFREQ_RELATION_L | CPUFREQ_RELATION_E)
309 #define CPUFREQ_RELATION_HE (CPUFREQ_RELATION_H | CPUFREQ_RELATION_E)
310 #define CPUFREQ_RELATION_CE (CPUFREQ_RELATION_C | CPUFREQ_RELATION_E)
1065 (relation & CPUFREQ_RELATION_E); in cpufreq_frequency_table_target()
1069 relation &= ~CPUFREQ_RELATION_E; in cpufreq_frequency_table_target()
/linux/rust/kernel/
H A Dcpufreq.rs73 const CPUFREQ_RELATION_E: u32 = 1 << 2; constant
91 let efficient = val & CPUFREQ_RELATION_E != 0; in new()
93 Ok(match val & !CPUFREQ_RELATION_E { in new()
112 val |= CPUFREQ_RELATION_E; in from()