diff mbox series

dt-bindings: clk: fix example for single-output provider

Message ID 20200309235722.26278-1-giulio.benetti@benettiengineering.com
State Accepted, archived
Headers show
Series dt-bindings: clk: fix example for single-output provider | expand

Checks

Context Check Description
robh/checkpatch success

Commit Message

Giulio Benetti March 9, 2020, 11:57 p.m. UTC
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>
---
 Documentation/devicetree/bindings/clock/clock-bindings.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Rob Herring March 23, 2020, 8:59 p.m. UTC | #1
On Tue, 10 Mar 2020 00:57:22 +0100, Giulio Benetti wrote:
> 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>
> ---
>  Documentation/devicetree/bindings/clock/clock-bindings.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Applied, thanks.

Rob
diff mbox series

Patch

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";
     };