Lines Matching refs:profile
295 struct devfreq_dev_profile *profile) in exynos_bus_profile_init() argument
302 profile->polling_ms = 50; in exynos_bus_profile_init()
303 profile->target = exynos_bus_target; in exynos_bus_profile_init()
304 profile->get_dev_status = exynos_bus_get_dev_status; in exynos_bus_profile_init()
305 profile->exit = exynos_bus_exit; in exynos_bus_profile_init()
315 bus->devfreq = devm_devfreq_add_device(dev, profile, in exynos_bus_profile_init()
356 struct devfreq_dev_profile *profile) in exynos_bus_profile_init_passive() argument
363 profile->target = exynos_bus_target; in exynos_bus_profile_init_passive()
364 profile->exit = exynos_bus_passive_exit; in exynos_bus_profile_init_passive()
378 bus->devfreq = devm_devfreq_add_device(dev, profile, DEVFREQ_GOV_PASSIVE, in exynos_bus_profile_init_passive()
393 struct devfreq_dev_profile *profile; in exynos_bus_probe() local
411 profile = devm_kzalloc(dev, sizeof(*profile), GFP_KERNEL); in exynos_bus_probe()
412 if (!profile) in exynos_bus_probe()
431 ret = exynos_bus_profile_init_passive(bus, profile); in exynos_bus_probe()
433 ret = exynos_bus_profile_init(bus, profile); in exynos_bus_probe()