dt/bindings: Correct clk binding example for PIC32 WDT.
authorPurna Chandra Mandal <purna.mandal@microchip.com>
Tue, 17 May 2016 05:05:59 +0000 (10:35 +0530)
committerRalf Baechle <ralf@linux-mips.org>
Sat, 28 May 2016 10:35:04 +0000 (12:35 +0200)
Update binding example based on new clock binding scheme.
[1] Documentation/devicetree/bindings/clock/microchip,pic32.txt

Signed-off-by: Purna Chandra Mandal <purna.mandal@microchip.com>
Acked-by: Rob Herring <robh@kernel.org>
Cc: Kumar Gala <galak@codeaurora.org>
Cc: Ian Campbell <ijc+devicetree@hellion.org.uk>
Cc: Joshua Henderson <digitalpeer@digitalpeer.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: linux-kernel@vger.kernel.org
Cc: linux-mips@linux-mips.org
Cc: devicetree@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/13269/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Documentation/devicetree/bindings/watchdog/microchip,pic32-wdt.txt

index d1401030e75c73bc89efe9807b9910be123f6f88..f03a29a1b32394cf585661b163a6f598a91a5f8f 100644 (file)
@@ -7,12 +7,12 @@ Required properties:
 - compatible: must be "microchip,pic32mzda-wdt".
 - reg: physical base address of the controller and length of memory mapped
   region.
-- clocks: phandle of source clk. should be <&LPRC> clk.
+- clocks: phandle of source clk. Should be <&rootclk LPRCCLK>.
 
 Example:
 
        watchdog@1f800800 {
                compatible = "microchip,pic32mzda-wdt";
                reg = <0x1f800800 0x200>;
-               clocks = <&LPRC>;
+               clocks = <&rootclk LPRCCLK>;
        };