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

Commit cb7d78d0 authored by Ivan Khoronzhuk's avatar Ivan Khoronzhuk Committed by David S. Miller
Browse files

net: ethernet: ti: cpsw: use same macros to get active slave



Use the same, more convenient macros, to get active slave.

Signed-off-by: default avatarIvan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0e85663b
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -1624,10 +1624,7 @@ static void cpsw_hwtstamp_v2(struct cpsw_priv *priv)
	struct cpsw_common *cpsw = priv->cpsw;
	u32 ctrl, mtype;

	if (cpsw->data.dual_emac)
		slave = &cpsw->slaves[priv->emac_port];
	else
		slave = &cpsw->slaves[cpsw->data.active_slave];
	slave = &cpsw->slaves[cpsw_slave_index(cpsw, priv)];

	ctrl = slave_read(slave, CPSW2_CONTROL);
	switch (cpsw->version) {