Skip to content

Commit

Permalink
cpufreq: scpi: Use .register_em() to register with energy model
Browse files Browse the repository at this point in the history
Set the newly added .register_em() callback with
cpufreq_register_em_with_opp() to register with the EM core.

Acked-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
  • Loading branch information
Viresh Kumar committed Aug 30, 2021
1 parent e96c215 commit 4d584ef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/cpufreq/scpi-cpufreq.c
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,6 @@ static int scpi_cpufreq_init(struct cpufreq_policy *policy)

policy->fast_switch_possible = false;

dev_pm_opp_of_register_em(cpu_dev, policy->cpus);

return 0;

out_free_cpufreq_table:
Expand Down Expand Up @@ -200,6 +198,7 @@ static struct cpufreq_driver scpi_cpufreq_driver = {
.init = scpi_cpufreq_init,
.exit = scpi_cpufreq_exit,
.target_index = scpi_cpufreq_set_target,
.register_em = cpufreq_register_em_with_opp,
};

static int scpi_cpufreq_probe(struct platform_device *pdev)
Expand Down

0 comments on commit 4d584ef

Please sign in to comment.