diff options
author | Sudeep Holla <sudeep.holla@arm.com> | 2021-06-08 23:58:34 +0200 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2021-06-16 21:55:04 +0200 |
commit | ca622ed60a46a19a0bd45407439760694dcdaf17 (patch) | |
tree | 06254cab12848e498c866699de602b87745ea81f | |
parent | dt-bindings: interrupt-controller: Fix compatible used in ti,pruss-intc (diff) | |
download | linux-ca622ed60a46a19a0bd45407439760694dcdaf17.tar.xz linux-ca622ed60a46a19a0bd45407439760694dcdaf17.zip |
dt-bindings: pwm: Use examples with documented/matching schema
'nvidia,tegra20-pwm' is not yet documented in the YAML schema. Use
'allwinner,sun7i-a20-pwm' instead to get rid of the following warning
with 'make DT_CHECKER_FLAGS=-m dt_binding_check':
pwm/pwm.example.dt.yaml:0:0: /example-0/pwm@7000a000: failed to match
any schema with compatible: ['nvidia,tegra20-pwm']
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Link: https://lore.kernel.org/r/20210608215834.2236920-1-sudeep.holla@arm.com
Signed-off-by: Rob Herring <robh@kernel.org>
-rw-r--r-- | Documentation/devicetree/bindings/pwm/pwm.yaml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Documentation/devicetree/bindings/pwm/pwm.yaml b/Documentation/devicetree/bindings/pwm/pwm.yaml index 7d1f687cee9c..2effe6c0de6b 100644 --- a/Documentation/devicetree/bindings/pwm/pwm.yaml +++ b/Documentation/devicetree/bindings/pwm/pwm.yaml @@ -24,8 +24,9 @@ additionalProperties: true examples: - | - pwm: pwm@7000a000 { - compatible = "nvidia,tegra20-pwm"; - reg = <0x7000a000 0x100>; - #pwm-cells = <2>; + pwm: pwm@1c20e00 { + compatible = "allwinner,sun7i-a20-pwm"; + reg = <0x01c20e00 0xc>; + clocks = <&osc24M>; + #pwm-cells = <3>; }; |