1
0
Fork 0

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

alistair/sunxi64-5.4-dsi
Linus Walleij 2019-06-12 09:47:15 +02:00
commit 74a36e4a03
1 changed files with 6 additions and 0 deletions

View File

@ -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;
}
/**