Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: imx6*-hummingboard: fix pcie reset GPIO specification

PCIe reset signals are active low, and our GPIO for this is directly
connected to the PCIe reset. However, as the PCIe driver was not using
the flag, the specification of '0' flags (which means active high) had
not been noticed. Correct this oversight, and switch to using the
GPIO flag definitions instead.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>

authored by

Russell King and committed by
Shawn Guo
5cff48fc 1041f98f

+1 -1
+1 -1
arch/arm/boot/dts/imx6qdl-hummingboard.dtsi
··· 253 253 &pcie { 254 254 pinctrl-names = "default"; 255 255 pinctrl-0 = <&pinctrl_hummingboard_pcie_reset>; 256 - reset-gpio = <&gpio3 4 0>; 256 + reset-gpio = <&gpio3 4 GPIO_ACTIVE_LOW>; 257 257 status = "okay"; 258 258 }; 259 259