Skip to content

Commit 2dea651

Browse files
Ansuelvireshk
authored andcommitted
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: a8811ec ("cpufreq: qcom: Add support for krait based socs") Signed-off-by: Ansuel Smith <[email protected]> Signed-off-by: Viresh Kumar <[email protected]>
1 parent 7c2553f commit 2dea651

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/cpufreq/qcom-cpufreq-nvmem.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ static int qcom_cpufreq_probe(struct platform_device *pdev)
277277
if (!np)
278278
return -ENOENT;
279279

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

0 commit comments

Comments
 (0)