Commit 3a6573b7 authored by Kunihiko Hayashi's avatar Kunihiko Hayashi Committed by Jakub Kicinski
Browse files

net: ethernet: ave: Remove duplicate phy_resume() calls



ave_open() in ave_resume() executes __phy_resume() via phy_start(), so no
need to call phy_resume() explicitly. Remove it.

Signed-off-by: default avatarKunihiko Hayashi <hayashi.kunihiko@socionext.com>
Link: https://lore.kernel.org/r/20221024072314.24969-1-hayashi.kunihiko@socionext.com


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent b65ef50e
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -1760,12 +1760,6 @@ static int ave_resume(struct device *dev)
	wol.wolopts = priv->wolopts;
	__ave_ethtool_set_wol(ndev, &wol);

	if (ndev->phydev) {
		ret = phy_resume(ndev->phydev);
		if (ret)
			return ret;
	}

	if (netif_running(ndev)) {
		ret = ave_open(ndev);
		netif_device_attach(ndev);