diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2019-10-02 18:07:42 +0200 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2019-10-15 12:29:35 -0500 |
commit | bec576a20f0f4f933048a7739029004e03359f76 (patch) | |
tree | 6c98d0e60aadc1a7888d2f4375cfbc2087ad91ef /Documentation/devicetree/bindings/rtc | |
parent | c2b474b02df2265741806d35ec733760f6eb2785 (diff) |
dt-bindings: rtc: s3c: Use defines instead of clock numbers
Make the examples in S3C RTC bindings more readable and bring them
closer to real DTS by using defines for clocks.
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Acked-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/rtc')
-rw-r--r-- | Documentation/devicetree/bindings/rtc/s3c-rtc.yaml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Documentation/devicetree/bindings/rtc/s3c-rtc.yaml b/Documentation/devicetree/bindings/rtc/s3c-rtc.yaml index 95570d7e19eb..4d91cdc9b998 100644 --- a/Documentation/devicetree/bindings/rtc/s3c-rtc.yaml +++ b/Documentation/devicetree/bindings/rtc/s3c-rtc.yaml @@ -75,11 +75,14 @@ allOf: examples: - | + #include <dt-bindings/clock/exynos5420.h> + #include <dt-bindings/clock/samsung,s2mps11.h> + rtc@10070000 { compatible = "samsung,s3c6410-rtc"; reg = <0x10070000 0x100>; interrupts = <0 44 4>, <0 45 4>; - clocks = <&clock 0>, // CLK_RTC - <&s2mps11_osc 0>; // S2MPS11_CLK_AP + clocks = <&clock CLK_RTC>, + <&s2mps11_osc S2MPS11_CLK_AP>; clock-names = "rtc", "rtc_src"; }; |