Commit 93ef4e41 authored by Fabio Estevam's avatar Fabio Estevam Committed by Shawn Guo

ARM: dts: imx6ul-14x14-evk: Fix SPI chipselect polarity

The GPIO expander SPI chipselect is active low. Mark it as such to avoid
the following warning:

[    6.839213] gpio@0 enforce active low on chipselect handle
Signed-off-by: default avatarFabio Estevam <festevam@gmail.com>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent 839661a2
...@@ -101,7 +101,7 @@ spi4 { ...@@ -101,7 +101,7 @@ spi4 {
status = "okay"; status = "okay";
gpio-sck = <&gpio5 11 0>; gpio-sck = <&gpio5 11 0>;
gpio-mosi = <&gpio5 10 0>; gpio-mosi = <&gpio5 10 0>;
cs-gpios = <&gpio5 7 0>; cs-gpios = <&gpio5 7 GPIO_ACTIVE_LOW>;
num-chipselects = <1>; num-chipselects = <1>;
#address-cells = <1>; #address-cells = <1>;
#size-cells = <0>; #size-cells = <0>;
......
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