diff options
author | Giulio Benetti <giulio.benetti@benettiengineering.com> | 2020-03-10 00:57:22 +0100 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2020-03-23 21:59:28 +0100 |
commit | 952c2ab61db2ef16a44ef56d55dd14644413ccf7 (patch) | |
tree | d3ca2a5be9a03db4b86bf08ce0d2e69f74141e70 /Documentation/devicetree/bindings/clock/clock-bindings.txt | |
parent | dt-bindings: Add vendor prefix for ENE (diff) | |
download | linux-952c2ab61db2ef16a44ef56d55dd14644413ccf7.tar.xz linux-952c2ab61db2ef16a44ef56d55dd14644413ccf7.zip |
dt-bindings: clk: fix example for single-output provider
As described above single-output clock provider should have
0 cells number, so let's fix it by using 0 as cells number.
Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/clock/clock-bindings.txt')
-rw-r--r-- | Documentation/devicetree/bindings/clock/clock-bindings.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/clock/clock-bindings.txt b/Documentation/devicetree/bindings/clock/clock-bindings.txt index b646bbcf7f92..8a55fdcf96ee 100644 --- a/Documentation/devicetree/bindings/clock/clock-bindings.txt +++ b/Documentation/devicetree/bindings/clock/clock-bindings.txt @@ -94,7 +94,7 @@ clock is connected to output 0 of the &ref. /* external oscillator */ osc: oscillator { compatible = "fixed-clock"; - #clock-cells = <1>; + #clock-cells = <0>; clock-frequency = <32678>; clock-output-names = "osc"; }; |