All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: phy: dp83867: Do not check sgmii if rgmii is already used
@ 2020-02-07 11:31 Michal Simek
  2020-02-10 12:07 ` Grygorii Strashko
  0 siblings, 1 reply; 9+ messages in thread
From: Michal Simek @ 2020-02-07 11:31 UTC (permalink / raw)
  To: u-boot

There is no reason to check sgmii branch again when it is clear that phy
interface is rgmii.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

 drivers/net/phy/dp83867.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/net/phy/dp83867.c b/drivers/net/phy/dp83867.c
index 4d796e289c45..3178787ff1c7 100644
--- a/drivers/net/phy/dp83867.c
+++ b/drivers/net/phy/dp83867.c
@@ -327,9 +327,7 @@ static int dp83867_config(struct phy_device *phydev)
 
 		phy_write_mmd(phydev, DP83867_DEVADDR,
 			      DP83867_RGMIIDCTL, delay);
-	}
-
-	if (phy_interface_is_sgmii(phydev)) {
+	} else if (phy_interface_is_sgmii(phydev)) {
 		phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR,
 			  (BMCR_ANENABLE | BMCR_FULLDPLX | BMCR_SPEED1000));
 
-- 
2.25.0

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2020-02-20  8:08 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-07 11:31 [PATCH] net: phy: dp83867: Do not check sgmii if rgmii is already used Michal Simek
2020-02-10 12:07 ` Grygorii Strashko
2020-02-11  8:11   ` Michal Simek
2020-02-12 20:24     ` Grygorii Strashko
2020-02-13  6:23       ` Michal Simek
2020-02-13 15:49         ` Grygorii Strashko
2020-02-13 16:05           ` Michal Simek
2020-02-19 16:36             ` Grygorii Strashko
2020-02-20  8:08               ` Michal Simek

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.