Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt/bindings: Correct clk binding example for PIC32 WDT.

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>

authored by

Purna Chandra Mandal and committed by
Ralf Baechle
761e52bc 58c37689

+2 -2
+2 -2
Documentation/devicetree/bindings/watchdog/microchip,pic32-wdt.txt
··· 7 7 - compatible: must be "microchip,pic32mzda-wdt". 8 8 - reg: physical base address of the controller and length of memory mapped 9 9 region. 10 - - clocks: phandle of source clk. should be <&LPRC> clk. 10 + - clocks: phandle of source clk. Should be <&rootclk LPRCCLK>. 11 11 12 12 Example: 13 13 14 14 watchdog@1f800800 { 15 15 compatible = "microchip,pic32mzda-wdt"; 16 16 reg = <0x1f800800 0x200>; 17 - clocks = <&LPRC>; 17 + clocks = <&rootclk LPRCCLK>; 18 18 };