net: dsa: remove calls to genphy_config_init
Supported PHY features are either auto-detected or explicitly set. In both cases calling genphy_config_init isn't needed. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c227ce4423
commit
00843d99ce
|
@ -538,10 +538,6 @@ static int dsa_port_setup_phy_of(struct dsa_port *dp, bool enable)
|
|||
return PTR_ERR(phydev);
|
||||
|
||||
if (enable) {
|
||||
err = genphy_config_init(phydev);
|
||||
if (err < 0)
|
||||
goto err_put_dev;
|
||||
|
||||
err = genphy_resume(phydev);
|
||||
if (err < 0)
|
||||
goto err_put_dev;
|
||||
|
@ -589,7 +585,6 @@ static int dsa_port_fixed_link_register_of(struct dsa_port *dp)
|
|||
mode = PHY_INTERFACE_MODE_NA;
|
||||
phydev->interface = mode;
|
||||
|
||||
genphy_config_init(phydev);
|
||||
genphy_read_status(phydev);
|
||||
|
||||
if (ds->ops->adjust_link)
|
||||
|
|
Loading…
Reference in New Issue