diff options
author | Fabio Estevam <festevam@gmail.com> | 2021-01-08 00:50:41 +0100 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2021-01-18 01:07:14 +0100 |
commit | 93ef4e4156315679df448de2988f7a85698e37a0 (patch) | |
tree | d3ce4994734bfad39a282362d1846858aaca627f /arch/arm/boot/dts/imx6ul-14x14-evk.dtsi | |
parent | ARM: dts: imx7: Mark timer with arm,cpu-registers-not-fw-configured (diff) | |
download | linux-93ef4e4156315679df448de2988f7a85698e37a0.tar.xz linux-93ef4e4156315679df448de2988f7a85698e37a0.zip |
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 <festevam@gmail.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'arch/arm/boot/dts/imx6ul-14x14-evk.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx6ul-14x14-evk.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/imx6ul-14x14-evk.dtsi b/arch/arm/boot/dts/imx6ul-14x14-evk.dtsi index 64c2d1e9f7fc..a6dbfa85bb6a 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>; |