Commit 48800d49 authored by Fabio Estevam's avatar Fabio Estevam Committed by Shawn Guo

ARM: dts: imx51-zii-rdu1: Replace deprecated spi-gpio properties

As stated in Documentation/devicetree/bindings/spi/spi-gpio.yaml,
'gpio-miso', 'gpio-mosi' and 'gpio-sck' are deprecated properties.

Use the recommeded 'miso-gpios', 'mosi-gpios' and 'sck-gpios' instead.
Signed-off-by: default avatarFabio Estevam <festevam@denx.de>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent b5ed9750
...@@ -145,9 +145,9 @@ spi_gpio: spi { ...@@ -145,9 +145,9 @@ spi_gpio: spi {
pinctrl-0 = <&pinctrl_gpiospi0>; pinctrl-0 = <&pinctrl_gpiospi0>;
status = "okay"; status = "okay";
gpio-sck = <&gpio4 15 GPIO_ACTIVE_HIGH>; sck-gpios = <&gpio4 15 GPIO_ACTIVE_HIGH>;
gpio-mosi = <&gpio4 12 GPIO_ACTIVE_HIGH>; mosi-gpios = <&gpio4 12 GPIO_ACTIVE_HIGH>;
gpio-miso = <&gpio4 11 GPIO_ACTIVE_HIGH>; miso-gpios = <&gpio4 11 GPIO_ACTIVE_HIGH>;
num-chipselects = <1>; num-chipselects = <1>;
cs-gpios = <&gpio4 14 GPIO_ACTIVE_HIGH>; cs-gpios = <&gpio4 14 GPIO_ACTIVE_HIGH>;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment