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

Commit a3703fb3 authored by Dmitri Epshtein's avatar Dmitri Epshtein Committed by David S. Miller
Browse files

net: mvneta: replace magic numbers by existing macros



Some literal values are actually already defined by macros, so let's use
them.

[gregory.clement@free-electrons.com: split intial commit in two
individual changes]
Signed-off-by: default avatarDmitri Epshtein <dima@marvell.com>
Signed-off-by: default avatarGregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0838abb3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1114,7 +1114,7 @@ static void mvneta_port_down(struct mvneta_port *pp)
		mdelay(1);

		val = mvreg_read(pp, MVNETA_RXQ_CMD);
	} while (val & 0xff);
	} while (val & MVNETA_RXQ_ENABLE_MASK);

	/* Stop Tx port activity. Check port Tx activity. Issue stop
	 * command for active channels only
@@ -1139,7 +1139,7 @@ static void mvneta_port_down(struct mvneta_port *pp)
		/* Check TX Command reg that all Txqs are stopped */
		val = mvreg_read(pp, MVNETA_TXQ_CMD);

	} while (val & 0xff);
	} while (val & MVNETA_TXQ_ENABLE_MASK);

	/* Double check to verify that TX FIFO is empty */
	count = 0;