diff options
Diffstat (limited to 'drivers/gpu/drm/lima/lima_devfreq.c')
| -rw-r--r-- | drivers/gpu/drm/lima/lima_devfreq.c | 12 | 
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/gpu/drm/lima/lima_devfreq.c b/drivers/gpu/drm/lima/lima_devfreq.c index 8989e215dfc9..011be7ff51e1 100644 --- a/drivers/gpu/drm/lima/lima_devfreq.c +++ b/drivers/gpu/drm/lima/lima_devfreq.c @@ -111,6 +111,12 @@ int lima_devfreq_init(struct lima_device *ldev)  	struct dev_pm_opp *opp;  	unsigned long cur_freq;  	int ret; +	const char *regulator_names[] = { "mali", NULL }; +	const char *clk_names[] = { "core", NULL }; +	struct dev_pm_opp_config config = { +		.regulator_names = regulator_names, +		.clk_names = clk_names, +	};  	if (!device_property_present(dev, "operating-points-v2"))  		/* Optional, continue without devfreq */ @@ -118,11 +124,7 @@ int lima_devfreq_init(struct lima_device *ldev)  	spin_lock_init(&ldevfreq->lock); -	ret = devm_pm_opp_set_clkname(dev, "core"); -	if (ret) -		return ret; - -	ret = devm_pm_opp_set_regulators(dev, (const char *[]){ "mali" }, 1); +	ret = devm_pm_opp_set_config(dev, &config);  	if (ret) {  		/* Continue if the optional regulator is missing */  		if (ret != -ENODEV)  |