Commit 1a6de002 authored by Marek Vasut's avatar Marek Vasut Committed by Patrick Delaunay
Browse files

ARM: dts: stm32: Fix GPIO hog flags on DHCOM PicoITX



The GPIO hog flags are ignored by gpiolib-of.c now, set the flags to 0.
Due to a change in gpiolib-of.c, setting flags to GPIO_ACTIVE_LOW and
using output-low DT property leads to the GPIO being set high instead.
Signed-off-by: default avatarMarek Vasut <marex@denx.de>
Cc: Patrice Chotard <patrice.chotard@st.com>
Cc: Patrick Delaunay <patrick.delaunay@st.com>
Reviewed-by: default avatarPatrice Chotard <patrice.chotard@st.com>
Reviewed-by: default avatarPatrick Delaunay <patrick.delaunay@foss.st.com>
parent 62b07b51
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
*/ */
usb-port-power { usb-port-power {
gpio-hog; gpio-hog;
gpios = <13 GPIO_ACTIVE_LOW>; gpios = <13 0>;
output-low; output-low;
line-name = "usb-port-power"; line-name = "usb-port-power";
}; };
......
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