]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
dt-bindings: iio: dac: mcp47feb02: fix example indentation
authorAriana Lazar <ariana.lazar@microchip.com>
Wed, 22 Apr 2026 13:40:52 +0000 (16:40 +0300)
committerJonathan Cameron <jic23@kernel.org>
Mon, 27 Apr 2026 08:58:24 +0000 (09:58 +0100)
Correct inconsistent indentation in the example and use consistent 4-space
indentation.

Signed-off-by: Ariana Lazar <ariana.lazar@microchip.com>
Acked-by: Conor Dooley <conor.dooley@microchip.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Documentation/devicetree/bindings/iio/dac/microchip,mcp47feb02.yaml

index b4ca5b6e743ae86b58d3cfdd61316362f4f55310..d131f136bd15161666932261bcacd6d124b23ede 100644 (file)
@@ -281,22 +281,22 @@ examples:
         #address-cells = <1>;
         #size-cells = <0>;
         dac@60 {
-          compatible = "microchip,mcp47feb02";
-          reg = <0x60>;
-          vdd-supply = <&vdac_vdd>;
-          vref-supply = <&vref_reg>;
+            compatible = "microchip,mcp47feb02";
+            reg = <0x60>;
+            vdd-supply = <&vdac_vdd>;
+            vref-supply = <&vref_reg>;
 
-          #address-cells = <1>;
-          #size-cells = <0>;
-          channel@0 {
-            reg = <0>;
-            label = "Adjustable_voltage_ch0";
-          };
+            #address-cells = <1>;
+            #size-cells = <0>;
+            channel@0 {
+                reg = <0>;
+                label = "Adjustable_voltage_ch0";
+            };
 
-          channel@1 {
-            reg = <0x1>;
-            label = "Adjustable_voltage_ch1";
-          };
-      };
+            channel@1 {
+                reg = <0x1>;
+                label = "Adjustable_voltage_ch1";
+            };
+        };
     };
 ...