aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy/mdio_device.c
diff options
context:
space:
mode:
authorDavid Bauer <mail@david-bauer.net>2019-04-17 23:59:22 +0200
committerDavid S. Miller <davem@davemloft.net>2019-04-18 17:42:54 -0700
commit6110ed2db3a41f3b9d676e58ac3d4637c2b497c4 (patch)
tree504923c7b9b315877d980f8a63210674ecef21f7 /drivers/net/phy/mdio_device.c
parentnet: phy: add support for reset-controller (diff)
downloadlinux-dev-6110ed2db3a41f3b9d676e58ac3d4637c2b497c4.tar.xz
linux-dev-6110ed2db3a41f3b9d676e58ac3d4637c2b497c4.zip
net: mdio: rename mdio_device reset to reset_gpio
This renames the GPIO reset of mdio devices from 'reset' to 'reset_gpio' to better differentiate between GPIO and reset-controller driven reset line. Signed-off-by: David Bauer <mail@david-bauer.net> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/mdio_device.c')
-rw-r--r--drivers/net/phy/mdio_device.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/phy/mdio_device.c b/drivers/net/phy/mdio_device.c
index 57668e0f9256..e282600bd83e 100644
--- a/drivers/net/phy/mdio_device.c
+++ b/drivers/net/phy/mdio_device.c
@@ -117,11 +117,11 @@ void mdio_device_reset(struct mdio_device *mdiodev, int value)
{
unsigned int d;
- if (!mdiodev->reset && !mdiodev->reset_ctrl)
+ if (!mdiodev->reset_gpio && !mdiodev->reset_ctrl)
return;
- if (mdiodev->reset)
- gpiod_set_value(mdiodev->reset, value);
+ if (mdiodev->reset_gpio)
+ gpiod_set_value(mdiodev->reset_gpio, value);
if (mdiodev->reset_ctrl) {
if (value)