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

Commit b869c221 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "qcom-cpufreq: Add missing cpufreq registers when use common table"

parents 05e56e19 1f6dee74
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -410,7 +410,7 @@ static int msm_cpufreq_probe(struct platform_device *pdev)
	if (!IS_ERR(ftbl)) {
		for_each_possible_cpu(cpu)
			per_cpu(freq_table, cpu) = ftbl;
		return 0;
		goto out_register;
	}

	/*
@@ -450,6 +450,7 @@ static int msm_cpufreq_probe(struct platform_device *pdev)
		per_cpu(freq_table, cpu) = ftbl;
	}

out_register:
	ret = register_pm_notifier(&msm_cpufreq_pm_notifier);
	if (ret)
		return ret;