Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c48e75a7 authored by Fabio Estevam's avatar Fabio Estevam Committed by Greg Kroah-Hartman
Browse files

ARM: dts: imx23-sansa: Use preferred i2c-gpios properties

[ Upstream commit e3aa1a82fb20ee97597022f6528823a8ab82bde6 ]

The 'gpios' property to describe the SDA and SCL GPIOs is considered
deprecated according to i2c-gpio.yaml.

Switch to the preferred 'sda-gpios' and 'scl-gpios' properties.

This fixes the following schema warnings:

imx23-sansa.dtb: i2c-0: 'sda-gpios' is a required property
	from schema $id: http://devicetree.org/schemas/i2c/i2c-gpio.yaml#
imx23-sansa.dtb: i2c-0: 'scl-gpios' is a required property
	from schema $id: http://devicetree.org/schemas/i2c/i2c-gpio.yaml#



Signed-off-by: default avatarFabio Estevam <festevam@denx.de>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 83b1ccec
Loading
Loading
Loading
Loading
+4 −8
Original line number Diff line number Diff line
@@ -175,10 +175,8 @@
		#address-cells = <1>;
		#size-cells = <0>;
		compatible = "i2c-gpio";
		gpios = <
			&gpio1 24 0		/* SDA */
			&gpio1 22 0		/* SCL */
		>;
		sda-gpios = <&gpio1 24 0>;
		scl-gpios = <&gpio1 22 0>;
		i2c-gpio,delay-us = <2>;	/* ~100 kHz */
	};

@@ -186,10 +184,8 @@
		#address-cells = <1>;
		#size-cells = <0>;
		compatible = "i2c-gpio";
		gpios = <
			&gpio0 31 0		/* SDA */
			&gpio0 30 0		/* SCL */
		>;
		sda-gpios = <&gpio0 31 0>;
		scl-gpios = <&gpio0 30 0>;
		i2c-gpio,delay-us = <2>;	/* ~100 kHz */

		touch: touch@20 {