Skip to content

Commit

Permalink
arm64: dts: sprd: sc9863a: reorder clocks, clock-names per bindings
Browse files Browse the repository at this point in the history
DT bindings expect the SC9863A clock-controller clocks/clock-names to be
in a specific order, reorder them.

Signed-off-by: Stanislav Jakubek <stano.jakubek@gmail.com>
Reviewed-by: Baolin Wang <baolin.wang@linux.alibaba.com>
Link: https://lore.kernel.org/r/d235438fbbd53c28b63cada2cf7e1234c120355e.1730918663.git.stano.jakubek@gmail.com
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
  • Loading branch information
Stanislav Jakubek authored and pull[bot] committed Jan 25, 2025
1 parent e5d0b66 commit 8980d79
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions arch/arm64/boot/dts/sprd/sc9863a.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -163,18 +163,18 @@
ap_clk: clock-controller@21500000 {
compatible = "sprd,sc9863a-ap-clk";
reg = <0 0x21500000 0 0x1000>;
clocks = <&ext_32k>, <&ext_26m>;
clock-names = "ext-32k", "ext-26m";
clocks = <&ext_26m>, <&ext_32k>;
clock-names = "ext-26m", "ext-32k";
#clock-cells = <1>;
};

aon_clk: clock-controller@402d0000 {
compatible = "sprd,sc9863a-aon-clk";
reg = <0 0x402d0000 0 0x1000>;
clocks = <&ext_26m>, <&rco_100m>,
<&ext_32k>, <&ext_4m>;
clock-names = "ext-26m", "rco-100m",
"ext-32k", "ext-4m";
clocks = <&ext_26m>, <&ext_32k>,
<&ext_4m>, <&rco_100m>;
clock-names = "ext-26m", "ext-32k",
"ext-4m", "rco-100m";
#clock-cells = <1>;
};

Expand Down

0 comments on commit 8980d79

Please sign in to comment.