Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 74a36e4a authored by Linus Walleij's avatar Linus Walleij
Browse files

Merge branch 'ib-snps-reset-gpio' into devel

parents 9d373aca edc1ef3f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -158,6 +158,12 @@ static void of_gpio_flags_quirks(struct device_node *np,
			}
		}
	}

	/* Legacy handling of stmmac's active-low PHY reset line */
	if (IS_ENABLED(CONFIG_STMMAC_ETH) &&
	    !strcmp(propname, "snps,reset-gpio") &&
	    of_property_read_bool(np, "snps,reset-active-low"))
		*flags |= OF_GPIO_ACTIVE_LOW;
}

/**