mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From 0e3e654696074b304302c7cc2a67314b7875f1ae Mon Sep 17 00:00:00 2001
|
|
From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
|
|
Date: Mon, 27 Jun 2022 11:32:50 +0200
|
|
Subject: [PATCH] arm64: dts: qcom: align OPP table names with DT schema
|
|
|
|
DT schema expects names of operating points tables to start with
|
|
"opp-table":
|
|
|
|
ipq6018-cp01-c1.dtb: cpu_opp_table: $nodename:0: 'cpu_opp_table' does not match '^opp-table(-[a-z0-9]+)?$'
|
|
|
|
Use hyphens instead of underscores, fix the names to match DT schema or
|
|
remove the prefix entirely when it is not needed.
|
|
|
|
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
|
|
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
|
|
Link: https://lore.kernel.org/r/20220627093250.84391-1-krzysztof.kozlowski@linaro.org
|
|
---
|
|
arch/arm64/boot/dts/qcom/ipq6018.dtsi | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
--- a/arch/arm64/boot/dts/qcom/ipq6018.dtsi
|
|
+++ b/arch/arm64/boot/dts/qcom/ipq6018.dtsi
|
|
@@ -87,7 +87,7 @@
|
|
};
|
|
};
|
|
|
|
- cpu_opp_table: cpu_opp_table {
|
|
+ cpu_opp_table: opp-table-cpu {
|
|
compatible = "operating-points-v2";
|
|
opp-shared;
|
|
|