]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
dt-bindings: pwm: Use examples with documented/matching schema
authorSudeep Holla <sudeep.holla@arm.com>
Tue, 8 Jun 2021 21:58:34 +0000 (22:58 +0100)
committerRob Herring <robh@kernel.org>
Wed, 16 Jun 2021 19:55:04 +0000 (13:55 -0600)
'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>
Documentation/devicetree/bindings/pwm/pwm.yaml

index 7d1f687cee9cd5863345dc627a94dd64209fb48c..2effe6c0de6bb602b2328c00be20e10650e35f5a 100644 (file)
@@ -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>;
     };