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

Commit 8b761b27 authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

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

parents f64990df e8d4c3bc
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -457,7 +457,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;
	}

	/*
@@ -497,6 +497,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;