Lines Matching refs:profile
279 struct devfreq_dev_profile *profile) in exynos_bus_profile_init() argument
286 profile->polling_ms = 50; in exynos_bus_profile_init()
287 profile->target = exynos_bus_target; in exynos_bus_profile_init()
288 profile->get_dev_status = exynos_bus_get_dev_status; in exynos_bus_profile_init()
289 profile->exit = exynos_bus_exit; in exynos_bus_profile_init()
299 bus->devfreq = devm_devfreq_add_device(dev, profile, in exynos_bus_profile_init()
340 struct devfreq_dev_profile *profile) in exynos_bus_profile_init_passive() argument
347 profile->target = exynos_bus_target; in exynos_bus_profile_init_passive()
348 profile->exit = exynos_bus_passive_exit; in exynos_bus_profile_init_passive()
362 bus->devfreq = devm_devfreq_add_device(dev, profile, DEVFREQ_GOV_PASSIVE, in exynos_bus_profile_init_passive()
377 struct devfreq_dev_profile *profile; in exynos_bus_probe() local
395 profile = devm_kzalloc(dev, sizeof(*profile), GFP_KERNEL); in exynos_bus_probe()
396 if (!profile) in exynos_bus_probe()
415 ret = exynos_bus_profile_init_passive(bus, profile); in exynos_bus_probe()
417 ret = exynos_bus_profile_init(bus, profile); in exynos_bus_probe()