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

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



The GPIO hog flags are ignored by gpiolib-of.c now, set the flags to 0.
Since GPIO_ACTIVE_HIGH is defined as 0, this change only increases the
correctness of the DT.
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 1a6de002
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
*/ */
usb-hub { usb-hub {
gpio-hog; gpio-hog;
gpios = <8 GPIO_ACTIVE_HIGH>; gpios = <8 0>;
output-high; output-high;
line-name = "rs485-rx-en"; line-name = "rs485-rx-en";
}; };
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
*/ */
usb-hub { usb-hub {
gpio-hog; gpio-hog;
gpios = <2 GPIO_ACTIVE_HIGH>; gpios = <2 0>;
output-high; output-high;
line-name = "usb-hub-reset"; line-name = "usb-hub-reset";
}; };
......
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