Commit c1fc14c4 authored by Justin Lai's avatar Justin Lai Committed by Paolo Abeni
Browse files

rtase: Correct the speed for RTL907XD-V1



Previously, the reported speed was uniformly set to SPEED_5000, but the
RTL907XD-V1 actually operates at a speed of SPEED_10000. Therefore, this
patch makes the necessary correction.

Fixes: dd7f17c4 ("rtase: Implement ethtool function")
Signed-off-by: default avatarJustin Lai <justinlai0215@realtek.com>
Signed-off-by: default avatarPaolo Abeni <pabeni@redhat.com>
parent a1f8609f
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
@@ -1714,10 +1714,21 @@ static int rtase_get_settings(struct net_device *dev,
			      struct ethtool_link_ksettings *cmd)
{
	u32 supported = SUPPORTED_MII | SUPPORTED_Pause | SUPPORTED_Asym_Pause;
	const struct rtase_private *tp = netdev_priv(dev);

	ethtool_convert_legacy_u32_to_link_mode(cmd->link_modes.supported,
						supported);

	switch (tp->hw_ver) {
	case RTASE_HW_VER_906X_7XA:
	case RTASE_HW_VER_906X_7XC:
		cmd->base.speed = SPEED_5000;
		break;
	case RTASE_HW_VER_907XD_V1:
		cmd->base.speed = SPEED_10000;
		break;
	}

	cmd->base.duplex = DUPLEX_FULL;
	cmd->base.port = PORT_MII;
	cmd->base.autoneg = AUTONEG_DISABLE;