From: Fabio Estevam Date: Thu, 7 Jan 2021 23:50:41 +0000 (-0300) Subject: ARM: dts: imx6ul-14x14-evk: Fix SPI chipselect polarity X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=93ef4e4156315679df448de2988f7a85698e37a0;p=linux.git 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: Fabio Estevam Signed-off-by: Shawn Guo --- diff --git a/arch/arm/boot/dts/imx6ul-14x14-evk.dtsi b/arch/arm/boot/dts/imx6ul-14x14-evk.dtsi index 64c2d1e9f7fce..a6dbfa85bb6af 100644 --- a/arch/arm/boot/dts/imx6ul-14x14-evk.dtsi +++ b/arch/arm/boot/dts/imx6ul-14x14-evk.dtsi @@ -101,7 +101,7 @@ status = "okay"; gpio-sck = <&gpio5 11 0>; gpio-mosi = <&gpio5 10 0>; - cs-gpios = <&gpio5 7 0>; + cs-gpios = <&gpio5 7 GPIO_ACTIVE_LOW>; num-chipselects = <1>; #address-cells = <1>; #size-cells = <0>;