@@ -2,14 +2,14 @@ Device Tree Clock bindings for cpu clock of Marvell EBU platforms
Required properties:
- compatible : shall be one of the following:
- "marvell,armada-xp-cpu-clockctrl" - cpu clocks for Armada XP
+ "marvell,armada-xp-cpu-clock" - cpu clocks for Armada XP
- reg : Address and length of the clock complex register set
- #clock-cells : should be set to 1.
- clocks : shall be the input parent clock phandle for the clock.
cpuclk: clock-complex@d0018700 {
#clock-cells = <1>;
- compatible = "marvell,armada-xp-cpu-clockctrl";
+ compatible = "marvell,armada-xp-cpu-clock";
reg = <0xd0018700 0xA0>;
clocks = <&coreclk 1>;
}
@@ -62,7 +62,7 @@
cpuclk: clock-complex@d0018700 {
#clock-cells = <1>;
- compatible = "marvell,armada-xp-cpu-clockctrl";
+ compatible = "marvell,armada-xp-cpu-clock";
reg = <0xd0018700 0xA0>;
clocks = <&coreclk 1>;
};
@@ -156,7 +156,7 @@ bail_out:
static const __initconst struct of_device_id clk_cpu_match[] = {
{
- .compatible = "marvell,armada-xp-cpu-clockctrl",
+ .compatible = "marvell,armada-xp-cpu-clock",
.data = of_cpu_clk_setup,
},
{
Most of the existing clock drivers have a compatible string that ends with "-clock", so change the "armada-xp-cpu-clockctrl" compatible strings of the mvebu clk-cpu.c driver to "armada-xp-cpu-clock". Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- .../devicetree/bindings/clock/mvebu-cpu-clock.txt | 4 ++-- arch/arm/boot/dts/armada-xp.dtsi | 2 +- drivers/clk/mvebu/clk-cpu.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-)