Skip to content

Commit

Permalink
dts: bindings: i2c: ti,tca954x-base: fix example syntax
Browse files Browse the repository at this point in the history
Fix the syntax in the device tree binding example by replacing `:` with `=`
in the `compatible` property. This ensures consistency with the standard
device tree syntax.

Signed-off-by: Hank Wang <[email protected]>
  • Loading branch information
WangHanChi authored and kartben committed Mar 10, 2025
1 parent 77dae8b commit bf369c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dts/bindings/i2c/ti,tca954x-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ description: |
reset-gpios = <&gpio5 3 GPIO_ACTIVE_LOW>;
mux_i2c@0 {
compatible: "ti,tca9546a-channel"
compatible = "ti,tca9546a-channel";
reg = <0>;
#address-cells = <1>;
#size-cells = <0>;
Expand All @@ -32,7 +32,7 @@ description: |
};
mux_i2c@1 {
compatible: "ti,tca9546a-channel"
compatible = "ti,tca9546a-channel";
reg = <1>;
#address-cells = <1>;
#size-cells = <0>;
Expand Down

0 comments on commit bf369c7

Please sign in to comment.