diff options
author | Andrew Lunn <andrew@lunn.ch> | 2018-04-19 01:02:50 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-04-19 15:59:10 -0400 |
commit | 9e4d60938a2b2aae3c2c213c923d9eb8d0a87ba2 (patch) | |
tree | b8a1e77568626f1b22bda208eea57fff9bbb0940 | |
parent | 712e5a5ce774a1542a09687441be7be456fe8b62 (diff) | |
download | lwn-9e4d60938a2b2aae3c2c213c923d9eb8d0a87ba2.tar.gz lwn-9e4d60938a2b2aae3c2c213c923d9eb8d0a87ba2.zip |
net: phy: mdio-gpio: Remove reset function
The platform data can contain a function to call to reset
the bit banging interface. It is not used, so remove it.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/phy/mdio-gpio.c | 1 | ||||
-rw-r--r-- | include/linux/platform_data/mdio-gpio.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/phy/mdio-gpio.c b/drivers/net/phy/mdio-gpio.c index 369f5f35d6fd..570b87b82abc 100644 --- a/drivers/net/phy/mdio-gpio.c +++ b/drivers/net/phy/mdio-gpio.c @@ -141,7 +141,6 @@ static struct mii_bus *mdio_gpio_bus_init(struct device *dev, goto out; bitbang->ctrl.ops = &mdio_gpio_ops; - bitbang->ctrl.reset = pdata->reset; mdc = pdata->mdc; bitbang->mdc = gpio_to_desc(mdc); if (pdata->mdc_active_low) diff --git a/include/linux/platform_data/mdio-gpio.h b/include/linux/platform_data/mdio-gpio.h index 11f00cdabe3d..6e8f01a570f2 100644 --- a/include/linux/platform_data/mdio-gpio.h +++ b/include/linux/platform_data/mdio-gpio.h @@ -26,8 +26,6 @@ struct mdio_gpio_platform_data { u32 phy_mask; u32 phy_ignore_ta_mask; int irqs[PHY_MAX_ADDR]; - /* reset callback */ - int (*reset)(struct mii_bus *bus); }; #endif /* __LINUX_MDIO_GPIO_H */ |