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 DMT.

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/13268/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

authored by

Purna Chandra Mandal and committed by
Ralf Baechle
58c37689 9c719d87

+2 -2
+2 -2
Documentation/devicetree/bindings/watchdog/microchip,pic32-dmt.txt
··· 8 8 - compatible: must be "microchip,pic32mzda-dmt". 9 9 - reg: physical base address of the controller and length of memory mapped 10 10 region. 11 - - clocks: phandle of parent clock (should be &PBCLK7). 11 + - clocks: phandle of source clk. Should be <&rootclk PB7CLK>. 12 12 13 13 Example: 14 14 15 15 watchdog@1f800a00 { 16 16 compatible = "microchip,pic32mzda-dmt"; 17 17 reg = <0x1f800a00 0x80>; 18 - clocks = <&PBCLK7>; 18 + clocks = <&rootclk PB7CLK>; 19 19 };