The phy_power_off() should not be called if phy_power_on() failed.
So, add a condition .power_count before calls phy_power_off().
Fixes: 5cb630925b49 ("net: renesas: rswitch: Add phy_power_{on,off}() calling")
Signed-off-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
                phy_print_status(phydev);
                if (phydev->link)
                        phy_power_on(rdev->serdes);
-               else
+               else if (rdev->serdes->power_count)
                        phy_power_off(rdev->serdes);
 
                rdev->etha->link = phydev->link;