Commit 2dea6516 authored by Ansuel Smith's avatar Ansuel Smith Committed by Viresh Kumar
Browse files

cpufreq: qcom: fix wrong compatible binding



Binding in Documentation is still "operating-points-v2-kryo-cpu".
Restore the old binding to fix the compatibility problem.

Fixes: a8811ec7 ("cpufreq: qcom: Add support for krait based socs")
Signed-off-by: default avatarAnsuel Smith <ansuelsmth@gmail.com>
Signed-off-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
parent 7c2553f0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -277,7 +277,7 @@ static int qcom_cpufreq_probe(struct platform_device *pdev)
	if (!np)
		return -ENOENT;

	ret = of_device_is_compatible(np, "operating-points-v2-qcom-cpu");
	ret = of_device_is_compatible(np, "operating-points-v2-kryo-cpu");
	if (!ret) {
		of_node_put(np);
		return -ENOENT;