Commit 56847704 authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller

net: phy: marvell10g: Utilize gen10g_no_soft_reset()

We do the same thing as the generic function: nothing, so utilize it.
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
parent 0adfdb66
...@@ -71,15 +71,6 @@ static int mv3310_probe(struct phy_device *phydev) ...@@ -71,15 +71,6 @@ static int mv3310_probe(struct phy_device *phydev)
return 0; return 0;
} }
/*
* Resetting the MV88X3310 causes it to become non-responsive. Avoid
* setting the reset bit(s).
*/
static int mv3310_soft_reset(struct phy_device *phydev)
{
return 0;
}
static int mv3310_config_init(struct phy_device *phydev) static int mv3310_config_init(struct phy_device *phydev)
{ {
__ETHTOOL_DECLARE_LINK_MODE_MASK(supported) = { 0, }; __ETHTOOL_DECLARE_LINK_MODE_MASK(supported) = { 0, };
...@@ -377,7 +368,7 @@ static struct phy_driver mv3310_drivers[] = { ...@@ -377,7 +368,7 @@ static struct phy_driver mv3310_drivers[] = {
SUPPORTED_10000baseT_Full | SUPPORTED_10000baseT_Full |
SUPPORTED_Backplane, SUPPORTED_Backplane,
.probe = mv3310_probe, .probe = mv3310_probe,
.soft_reset = mv3310_soft_reset, .soft_reset = gen10g_no_soft_reset,
.config_init = mv3310_config_init, .config_init = mv3310_config_init,
.config_aneg = mv3310_config_aneg, .config_aneg = mv3310_config_aneg,
.aneg_done = mv3310_aneg_done, .aneg_done = mv3310_aneg_done,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment