Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: a8811ec764f9 ("cpufreq: qcom: Add support for krait based socs")
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>

authored by

Ansuel Smith and committed by
Viresh Kumar
2dea6516 7c2553f0

+1 -1
+1 -1
drivers/cpufreq/qcom-cpufreq-nvmem.c
··· 277 277 if (!np) 278 278 return -ENOENT; 279 279 280 - ret = of_device_is_compatible(np, "operating-points-v2-qcom-cpu"); 280 + ret = of_device_is_compatible(np, "operating-points-v2-kryo-cpu"); 281 281 if (!ret) { 282 282 of_node_put(np); 283 283 return -ENOENT;