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

Commit 0ab6b544 authored by David Decotigny's avatar David Decotigny Committed by David S. Miller
Browse files

net: team: use __ethtool_get_ksettings

parent 85f95819
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -2813,12 +2813,12 @@ static void __team_port_change_send(struct team_port *port, bool linkup)
	port->state.linkup = linkup;
	team_refresh_port_linkup(port);
	if (linkup) {
		struct ethtool_cmd ecmd;
		struct ethtool_link_ksettings ecmd;

		err = __ethtool_get_settings(port->dev, &ecmd);
		err = __ethtool_get_link_ksettings(port->dev, &ecmd);
		if (!err) {
			port->state.speed = ethtool_cmd_speed(&ecmd);
			port->state.duplex = ecmd.duplex;
			port->state.speed = ecmd.base.speed;
			port->state.duplex = ecmd.base.duplex;
			goto send_event;
		}
	}