Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a0da456b authored by Max Uvarov's avatar Max Uvarov Committed by David S. Miller
Browse files

net: phy-micrel: check return code in flp center function



Fix obvious typo that first return value is set but not checked.

Signed-off-by: default avatarMax Uvarov <muvarov@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c7799c06
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -496,16 +496,18 @@ static int ksz9031_of_load_skew_values(struct phy_device *phydev,
	return ksz9031_extended_write(phydev, OP_DATA, 2, reg, newval);
}

/* Center KSZ9031RNX FLP timing at 16ms. */
static int ksz9031_center_flp_timing(struct phy_device *phydev)
{
	int result;

	/* Center KSZ9031RNX FLP timing at 16ms. */
	result = ksz9031_extended_write(phydev, OP_DATA, 0,
					MII_KSZ9031RN_FLP_BURST_TX_HI, 0x0006);
	if (result)
		return result;

	result = ksz9031_extended_write(phydev, OP_DATA, 0,
					MII_KSZ9031RN_FLP_BURST_TX_LO, 0x1A80);

	if (result)
		return result;