aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPurna Chandra Mandal <[email protected]>2016-05-17 10:35:59 +0530
committerRalf Baechle <[email protected]>2016-05-28 12:35:04 +0200
commit761e52bc70c048e93038c52942fee7b4cdda6c22 (patch)
tree42edae13cbf185fe9048ea928f683da9d8f15671
parent58c376893bfbf489ba0ad258ec72e067d643fe16 (diff)
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 <[email protected]> Acked-by: Rob Herring <[email protected]> Cc: Kumar Gala <[email protected]> Cc: Ian Campbell <[email protected]> Cc: Joshua Henderson <[email protected]> Cc: Mark Rutland <[email protected]> Cc: [email protected] Cc: [email protected] Cc: [email protected] Patchwork: https://patchwork.linux-mips.org/patch/13269/ Signed-off-by: Ralf Baechle <[email protected]>
-rw-r--r--Documentation/devicetree/bindings/watchdog/microchip,pic32-wdt.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/watchdog/microchip,pic32-wdt.txt b/Documentation/devicetree/bindings/watchdog/microchip,pic32-wdt.txt
index d1401030e75c..f03a29a1b323 100644
--- a/Documentation/devicetree/bindings/watchdog/microchip,pic32-wdt.txt
+++ b/Documentation/devicetree/bindings/watchdog/microchip,pic32-wdt.txt
@@ -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>;
};