aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Epshtein <[email protected]>2016-03-12 18:44:20 +0100
committerDavid S. Miller <[email protected]>2016-03-14 15:48:52 -0400
commita3703fb31a4779e5c515f51f602dda1ffcfbfec9 (patch)
tree0b7e23aebc703fe881aefafb3c4b32c1e7e3813a
parent0838abb3c08cff83719b461adffefc83721af34b (diff)
net: mvneta: replace magic numbers by existing macros
Some literal values are actually already defined by macros, so let's use them. [[email protected]: split intial commit in two individual changes] Signed-off-by: Dmitri Epshtein <[email protected]> Signed-off-by: Gregory CLEMENT <[email protected]> Signed-off-by: David S. Miller <[email protected]>
-rw-r--r--drivers/net/ethernet/marvell/mvneta.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/marvell/mvneta.c b/drivers/net/ethernet/marvell/mvneta.c
index 1af60bdea051..577f7ca7deba 100644
--- a/drivers/net/ethernet/marvell/mvneta.c
+++ b/drivers/net/ethernet/marvell/mvneta.c
@@ -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;