Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 92c99d15 authored by Viresh Kumar's avatar Viresh Kumar Committed by Rafael J. Wysocki
Browse files

cpufreq: Don't validate cpufreq table from cpufreq_generic_init()



The cpufreq table is already validated by the cpufreq core and none of
the users of cpufreq_generic_init() have any dependency on it to
validate the table as well.

Don't validate the cpufreq table anymore from cpufreq_generic_init().

Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 8d768cdc
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -178,14 +178,7 @@ int cpufreq_generic_init(struct cpufreq_policy *policy,
		struct cpufreq_frequency_table *table,
		unsigned int transition_latency)
{
	int ret;

	ret = cpufreq_table_validate_and_show(policy, table);
	if (ret) {
		pr_err("%s: invalid frequency table: %d\n", __func__, ret);
		return ret;
	}

	policy->freq_table = table;
	policy->cpuinfo.transition_latency = transition_latency;

	/*