Commit a9a744dd authored by Yangtao Li's avatar Yangtao Li Committed by Viresh Kumar
Browse files

cpufreq: OMAP: Register an Energy Model



Try and register an Energy Model from omap-cpufreq.c to allow
interested subsystems like the task scheduler to use the provided
information.

Signed-off-by: default avatarYangtao Li <tiny.windzz@gmail.com>
Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
parent 3ad63a6b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -133,8 +133,10 @@ static int omap_cpu_init(struct cpufreq_policy *policy)

	/* FIXME: what's the actual transition time? */
	result = cpufreq_generic_init(policy, freq_table, 300 * 1000);
	if (!result)
	if (!result) {
		dev_pm_opp_of_register_em(policy->cpus);
		return 0;
	}

	freq_table_free();
fail: