aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>2015-10-14 01:58:45 -0400
committerKukjin Kim <kgene@kernel.org>2015-10-23 15:31:40 -0400
commitae8a2881b5336aa96aea937ba3610d5a6dd32a26 (patch)
tree2e76e8192ab12f5fd2cbd0e6392ffa25a3c61a2a
parent1f7ce3d1c96b6f8e38b4afedf9399ca279add78c (diff)
dt-bindings: Correct the example for Exynos power domain clocks
Since commit 29e5eea06bc1 ("ARM: EXYNOS: Get current parent clock for power domain on/off") the "pclkN" names of "clock-names" property is not parsed any more. The bindings and driver were updated but the example was not. Fix the example now. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Reviewed-by: Javier Martinez Canillas <javier@osg.samsung.com> Signed-off-by: Kukjin Kim <kgene@kernel.org>
-rw-r--r--Documentation/devicetree/bindings/arm/exynos/power_domain.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/Documentation/devicetree/bindings/arm/exynos/power_domain.txt b/Documentation/devicetree/bindings/arm/exynos/power_domain.txt
index e151057d92f0..4e947372a693 100644
--- a/Documentation/devicetree/bindings/arm/exynos/power_domain.txt
+++ b/Documentation/devicetree/bindings/arm/exynos/power_domain.txt
@@ -43,9 +43,8 @@ Example:
43 mfc_pd: power-domain@10044060 { 43 mfc_pd: power-domain@10044060 {
44 compatible = "samsung,exynos4210-pd"; 44 compatible = "samsung,exynos4210-pd";
45 reg = <0x10044060 0x20>; 45 reg = <0x10044060 0x20>;
46 clocks = <&clock CLK_FIN_PLL>, <&clock CLK_MOUT_SW_ACLK333>, 46 clocks = <&clock CLK_FIN_PLL>, <&clock CLK_MOUT_USER_ACLK333>;
47 <&clock CLK_MOUT_USER_ACLK333>; 47 clock-names = "oscclk", "clk0";
48 clock-names = "oscclk", "pclk0", "clk0";
49 #power-domain-cells = <0>; 48 #power-domain-cells = <0>;
50 }; 49 };
51 50