Lines Matching refs:opp
642 struct opp *opp; in exynos4_bus_target() local
648 opp = devfreq_recommended_opp(dev, _freq, flags); in exynos4_bus_target()
649 if (IS_ERR(opp)) { in exynos4_bus_target()
651 return PTR_ERR(opp); in exynos4_bus_target()
653 new_oppinfo.rate = opp_get_freq(opp); in exynos4_bus_target()
654 new_oppinfo.volt = opp_get_voltage(opp); in exynos4_bus_target()
959 struct opp *opp; in exynos4_busfreq_pm_notifier_event() local
972 opp = opp_find_freq_floor(data->dev, &maxfreq); in exynos4_busfreq_pm_notifier_event()
973 if (IS_ERR(opp)) { in exynos4_busfreq_pm_notifier_event()
977 return PTR_ERR(opp); in exynos4_busfreq_pm_notifier_event()
979 new_oppinfo.rate = opp_get_freq(opp); in exynos4_busfreq_pm_notifier_event()
980 new_oppinfo.volt = opp_get_voltage(opp); in exynos4_busfreq_pm_notifier_event()
1022 struct opp *opp; in exynos4_busfreq_probe() local
1067 opp = opp_find_freq_floor(dev, &exynos4_devfreq_profile.initial_freq); in exynos4_busfreq_probe()
1068 if (IS_ERR(opp)) { in exynos4_busfreq_probe()
1072 return PTR_ERR(opp); in exynos4_busfreq_probe()
1074 data->curr_oppinfo.rate = opp_get_freq(opp); in exynos4_busfreq_probe()
1075 data->curr_oppinfo.volt = opp_get_voltage(opp); in exynos4_busfreq_probe()