aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy/phy_device.c
diff options
context:
space:
mode:
authorAndy Fleming <afleming@freescale.com>2008-12-16 15:39:48 -0800
committerDavid S. Miller <davem@davemloft.net>2008-12-16 15:39:48 -0800
commitf162e97d778ec29492be8eb9bbecb65be976b7c8 (patch)
tree4887390602c252537417a602a4478fafe3106047 /drivers/net/phy/phy_device.c
parent5a5efed4817ef931f648b118aeb9222e53122d2b (diff)
downloadkernel_samsung_smdk4412-f162e97d778ec29492be8eb9bbecb65be976b7c8.zip
kernel_samsung_smdk4412-f162e97d778ec29492be8eb9bbecb65be976b7c8.tar.gz
kernel_samsung_smdk4412-f162e97d778ec29492be8eb9bbecb65be976b7c8.tar.bz2
phylib: Remove unnecessary "reset" fixups in genphy_setup_forced
genphy_setup_forced hasn't actually reset the PHY for a long time, but a comment to that effect remained in the code, so code continued to act as if it *had* reset the PHY, and called the necessary fixup functions to respond to a PHY reset. With no reset, those functions are no longer needed, so we remove them. Signed-off-by: Andy Fleming <afleming@freescale.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/phy_device.c')
-rw-r--r--drivers/net/phy/phy_device.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
index 4cc75a2..f84f6a1b 100644
--- a/drivers/net/phy/phy_device.c
+++ b/drivers/net/phy/phy_device.c
@@ -517,23 +517,6 @@ int genphy_setup_forced(struct phy_device *phydev)
err = phy_write(phydev, MII_BMCR, ctl);
- if (err < 0)
- return err;
-
- /*
- * Run the fixups on this PHY, just in case the
- * board code needs to change something after a reset
- */
- err = phy_scan_fixups(phydev);
-
- if (err < 0)
- return err;
-
- /* We just reset the device, so we'd better configure any
- * settings the PHY requires to operate */
- if (phydev->drv->config_init)
- err = phydev->drv->config_init(phydev);
-
return err;
}