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

Commit 7e770b25 authored by Martin Blumenstingl's avatar Martin Blumenstingl Committed by David S. Miller
Browse files

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: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 42a90766
Loading
Loading
Loading
Loading
+9 −20
Original line number Original line Diff line number Diff line
@@ -253,7 +253,6 @@ int stmmac_mdio_reset(struct mii_bus *bus)
	if (priv->device->of_node) {
	if (priv->device->of_node) {
		struct gpio_desc *reset_gpio;
		struct gpio_desc *reset_gpio;


		if (data->reset_gpio < 0) {
		reset_gpio = devm_gpiod_get_optional(priv->device,
		reset_gpio = devm_gpiod_get_optional(priv->device,
						     "snps,reset",
						     "snps,reset",
						     GPIOD_OUT_LOW);
						     GPIOD_OUT_LOW);
@@ -263,11 +262,6 @@ int stmmac_mdio_reset(struct mii_bus *bus)
		device_property_read_u32_array(priv->device,
		device_property_read_u32_array(priv->device,
					       "snps,reset-delays-us",
					       "snps,reset-delays-us",
					       data->delays, 3);
					       data->delays, 3);
		} else {
			reset_gpio = gpio_to_desc(data->reset_gpio);

			gpiod_direction_output(reset_gpio, 0);
		}


		if (data->delays[0])
		if (data->delays[0])
			msleep(DIV_ROUND_UP(data->delays[0], 1000));
			msleep(DIV_ROUND_UP(data->delays[0], 1000));
@@ -323,11 +317,6 @@ int stmmac_mdio_register(struct net_device *ndev)
	if (mdio_bus_data->irqs)
	if (mdio_bus_data->irqs)
		memcpy(new_bus->irq, mdio_bus_data->irqs, sizeof(new_bus->irq));
		memcpy(new_bus->irq, mdio_bus_data->irqs, sizeof(new_bus->irq));


#ifdef CONFIG_OF
	if (priv->device->of_node)
		mdio_bus_data->reset_gpio = -1;
#endif

	new_bus->name = "stmmac";
	new_bus->name = "stmmac";


	if (priv->plat->has_xgmac) {
	if (priv->plat->has_xgmac) {
+0 −1
Original line number Original line Diff line number Diff line
@@ -97,7 +97,6 @@ struct stmmac_mdio_bus_data {
	int *irqs;
	int *irqs;
	int probed_phy_irq;
	int probed_phy_irq;
#ifdef CONFIG_OF
#ifdef CONFIG_OF
	int reset_gpio;
	u32 delays[3];
	u32 delays[3];
#endif
#endif
};
};