Home
last modified time | relevance | path

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

/linux/drivers/opp/
H A Dcore.c493 unsigned long opp_key, unsigned long key) in _compare_exact() argument
495 if (opp_key == key) { in _compare_exact()
504 unsigned long opp_key, unsigned long key) in _compare_ceil() argument
506 if (opp_key >= key) { in _compare_ceil()
515 unsigned long opp_key, unsigned long key) in _compare_floor() argument
517 if (opp_key > key) in _compare_floor()
525 struct dev_pm_opp *temp_opp, struct dev_pm_opp_key *opp_key, in _compare_opp_key_exact() argument
528 bool level_match = (key->level == OPP_LEVEL_UNSET || opp_key->level == key->level); in _compare_opp_key_exact()
529 bool freq_match = (key->freq == 0 || opp_key->freq == key->freq); in _compare_opp_key_exact()
530 bool bw_match = (key->bw == 0 || opp_key->bw == key->bw); in _compare_opp_key_exact()
[all …]