diff options
author | Martin Blumenstingl <martin.blumenstingl@googlemail.com> | 2019-06-15 13:09:30 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-06-16 23:53:41 +0300 |
commit | 7e770b252a62e7498cfa9411018100fd86e56d47 (patch) | |
tree | a1e404f30c5047ed4235b6778a7b4c107d473476 /include/linux/stmmac.h | |
parent | 42a90766fe1ff438b2af26a94bb8395c405f684b (diff) | |
download | linux-7e770b252a62e7498cfa9411018100fd86e56d47.tar.xz |
net: stmmac: drop the reset GPIO from struct stmmac_mdio_bus_data
No platform uses the "reset_gpio" field from stmmac_mdio_bus_data
anymore. Drop it so we don't get any new consumers either.
Plain GPIO numbers are being deprecated in favor of GPIO descriptors. If
needed any new non-OF platform can add a GPIO descriptor lookup table.
devm_gpiod_get_optional() will find the GPIO in that case.
Suggested-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/stmmac.h')
-rw-r--r-- | include/linux/stmmac.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/stmmac.h b/include/linux/stmmac.h index a3c2d9945bcf..a0cc6fa4965b 100644 --- a/include/linux/stmmac.h +++ b/include/linux/stmmac.h @@ -97,7 +97,6 @@ struct stmmac_mdio_bus_data { int *irqs; int probed_phy_irq; #ifdef CONFIG_OF - int reset_gpio; u32 delays[3]; #endif }; |