Lines Matching refs:devfreq
33 struct devfreq *devfreq; member
385 struct devfreq *parent_devfreq; in exynos_bus_probe()
439 bus->devfreq = devm_devfreq_add_device(dev, profile, in exynos_bus_probe()
442 if (IS_ERR(bus->devfreq)) { in exynos_bus_probe()
444 ret = PTR_ERR(bus->devfreq); in exynos_bus_probe()
449 ret = devm_devfreq_register_opp_notifier(dev, bus->devfreq); in exynos_bus_probe()
492 bus->devfreq = devm_devfreq_add_device(dev, profile, DEVFREQ_GOV_PASSIVE, in exynos_bus_probe()
494 if (IS_ERR(bus->devfreq)) { in exynos_bus_probe()
497 ret = PTR_ERR(bus->devfreq); in exynos_bus_probe()
502 max_state = bus->devfreq->profile->max_state; in exynos_bus_probe()
503 min_freq = (bus->devfreq->profile->freq_table[0] / 1000); in exynos_bus_probe()
504 max_freq = (bus->devfreq->profile->freq_table[max_state - 1] / 1000); in exynos_bus_probe()