Message ID | 20250409134128.2098195-7-y-abhilashchandra@ti.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | Fix dtbs_check warnings in CSI overlays | expand |
On 4/9/2025 7:11 PM, Yemike Abhilash Chandra wrote: > The IMX219 device tree overlay incorrectly defined an I2C switch instead > of an I2C mux. According to the DT bindings, the correct terminology and > node definition should use "i2c-mux" instead of "i2c-switch". Hence, > update the same to avoid dtbs_check warnings. > > Fixes: 4111db03dc05 ("arm64: dts: ti: k3-am62x: Add overlay for IMX219") > Cc: stable@vger.kernel.org > Signed-off-by: Yemike Abhilash Chandra <y-abhilashchandra@ti.com> > --- > arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso b/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso > index 7a0d35eb04d3..dd090813a32d 100644 > --- a/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso > +++ b/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso > @@ -22,7 +22,7 @@ &main_i2c2 { > #size-cells = <0>; > status = "okay"; > > - i2c-switch@71 { > + i2c-mux@71 { > compatible = "nxp,pca9543"; > #address-cells = <1>; > #size-cells = <0>; Reviewed-by: Neha Malcom Francis <n-francis@ti.com>
On Wed, Apr 09, 2025 at 07:11:27PM +0530, Yemike Abhilash Chandra wrote: > The IMX219 device tree overlay incorrectly defined an I2C switch instead > of an I2C mux. According to the DT bindings, the correct terminology and > node definition should use "i2c-mux" instead of "i2c-switch". Hence, > update the same to avoid dtbs_check warnings. > > Fixes: 4111db03dc05 ("arm64: dts: ti: k3-am62x: Add overlay for IMX219") > Cc: stable@vger.kernel.org > Signed-off-by: Yemike Abhilash Chandra <y-abhilashchandra@ti.com> Reviewed-by: Jai Luthra <jai.luthra@linux.dev> > --- > arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso b/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso > index 7a0d35eb04d3..dd090813a32d 100644 > --- a/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso > +++ b/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso > @@ -22,7 +22,7 @@ &main_i2c2 { > #size-cells = <0>; > status = "okay"; > > - i2c-switch@71 { > + i2c-mux@71 { > compatible = "nxp,pca9543"; > #address-cells = <1>; > #size-cells = <0>; > -- > 2.34.1 >
diff --git a/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso b/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso index 7a0d35eb04d3..dd090813a32d 100644 --- a/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso +++ b/arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso @@ -22,7 +22,7 @@ &main_i2c2 { #size-cells = <0>; status = "okay"; - i2c-switch@71 { + i2c-mux@71 { compatible = "nxp,pca9543"; #address-cells = <1>; #size-cells = <0>;
The IMX219 device tree overlay incorrectly defined an I2C switch instead of an I2C mux. According to the DT bindings, the correct terminology and node definition should use "i2c-mux" instead of "i2c-switch". Hence, update the same to avoid dtbs_check warnings. Fixes: 4111db03dc05 ("arm64: dts: ti: k3-am62x: Add overlay for IMX219") Cc: stable@vger.kernel.org Signed-off-by: Yemike Abhilash Chandra <y-abhilashchandra@ti.com> --- arch/arm64/boot/dts/ti/k3-am62x-sk-csi2-imx219.dtso | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)