Commit 21f18970 authored by Simon Horman's avatar Simon Horman

ARM: dts: r7s72100: Remove unnecessary clock-output-names properties

* Fixed rate and fixed factor clocks do not require an
  clock-output-names property.
* Since 07705583 ("clk: shmobile: div6: Make clock-output-names
  optional") Renesas div6 clocks do not require a clock-output-names
  property.

In the above cases there is only one clock output and its name is taken
from that of the clock node.  Accordingly, remove the unnecessary
clock-output-names properties and as necessary update the node names.
Signed-off-by: default avatarSimon Horman <horms+renesas@verge.net.au>
Reviewed-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
parent b19dd47b
...@@ -37,46 +37,41 @@ clocks { ...@@ -37,46 +37,41 @@ clocks {
#size-cells = <1>; #size-cells = <1>;
/* External clocks */ /* External clocks */
extal_clk: extal_clk { extal_clk: extal {
#clock-cells = <0>; #clock-cells = <0>;
compatible = "fixed-clock"; compatible = "fixed-clock";
/* If clk present, value must be set by board */ /* If clk present, value must be set by board */
clock-frequency = <0>; clock-frequency = <0>;
clock-output-names = "extal";
}; };
usb_x1_clk: usb_x1_clk { usb_x1_clk: usb_x1 {
#clock-cells = <0>; #clock-cells = <0>;
compatible = "fixed-clock"; compatible = "fixed-clock";
/* If clk present, value must be set by board */ /* If clk present, value must be set by board */
clock-frequency = <0>; clock-frequency = <0>;
clock-output-names = "usb_x1";
}; };
/* Fixed factor clocks */ /* Fixed factor clocks */
b_clk: b_clk { b_clk: b {
#clock-cells = <0>; #clock-cells = <0>;
compatible = "fixed-factor-clock"; compatible = "fixed-factor-clock";
clocks = <&cpg_clocks R7S72100_CLK_PLL>; clocks = <&cpg_clocks R7S72100_CLK_PLL>;
clock-mult = <1>; clock-mult = <1>;
clock-div = <3>; clock-div = <3>;
clock-output-names = "b";
}; };
p1_clk: p1_clk { p1_clk: p1 {
#clock-cells = <0>; #clock-cells = <0>;
compatible = "fixed-factor-clock"; compatible = "fixed-factor-clock";
clocks = <&cpg_clocks R7S72100_CLK_PLL>; clocks = <&cpg_clocks R7S72100_CLK_PLL>;
clock-mult = <1>; clock-mult = <1>;
clock-div = <6>; clock-div = <6>;
clock-output-names = "p1";
}; };
p0_clk: p0_clk { p0_clk: p0 {
#clock-cells = <0>; #clock-cells = <0>;
compatible = "fixed-factor-clock"; compatible = "fixed-factor-clock";
clocks = <&cpg_clocks R7S72100_CLK_PLL>; clocks = <&cpg_clocks R7S72100_CLK_PLL>;
clock-mult = <1>; clock-mult = <1>;
clock-div = <12>; clock-div = <12>;
clock-output-names = "p0";
}; };
/* Special CPG clocks */ /* Special CPG clocks */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment