temp_opp          374 drivers/opp/core.c 	struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
temp_opp          386 drivers/opp/core.c 	list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
temp_opp          387 drivers/opp/core.c 		if (temp_opp->available == available &&
temp_opp          388 drivers/opp/core.c 				temp_opp->rate == freq) {
temp_opp          389 drivers/opp/core.c 			opp = temp_opp;
temp_opp          423 drivers/opp/core.c 	struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
temp_opp          435 drivers/opp/core.c 	list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
temp_opp          436 drivers/opp/core.c 		if (temp_opp->level == level) {
temp_opp          437 drivers/opp/core.c 			opp = temp_opp;
temp_opp          455 drivers/opp/core.c 	struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
temp_opp          459 drivers/opp/core.c 	list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
temp_opp          460 drivers/opp/core.c 		if (temp_opp->available && temp_opp->rate >= *freq) {
temp_opp          461 drivers/opp/core.c 			opp = temp_opp;
temp_opp          538 drivers/opp/core.c 	struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
temp_opp          551 drivers/opp/core.c 	list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
temp_opp          552 drivers/opp/core.c 		if (temp_opp->available) {
temp_opp          554 drivers/opp/core.c 			if (temp_opp->rate > *freq)
temp_opp          557 drivers/opp/core.c 				opp = temp_opp;
temp_opp          595 drivers/opp/core.c 	struct dev_pm_opp *temp_opp, *opp = ERR_PTR(-ERANGE);
temp_opp          609 drivers/opp/core.c 	list_for_each_entry(temp_opp, &opp_table->opp_list, node) {
temp_opp          610 drivers/opp/core.c 		if (temp_opp->available) {
temp_opp          611 drivers/opp/core.c 			if (temp_opp->supplies[0].u_volt > u_volt)
temp_opp          613 drivers/opp/core.c 			opp = temp_opp;