[PATCH net-next 30/40] net: fec: move last_bdp assignment for symmetry
Troy Kisky
troy.kisky at boundarydevices.com
Thu Jan 28 13:25:54 PST 2016
This way both if clauses assign last_bdp instead
of only one clause overriding the default.
Signed-off-by: Troy Kisky <troy.kisky at boundarydevices.com>
---
drivers/net/ethernet/freescale/fec_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/freescale/fec_main.c b/drivers/net/ethernet/freescale/fec_main.c
index 3a82bfe..b829c29 100644
--- a/drivers/net/ethernet/freescale/fec_main.c
+++ b/drivers/net/ethernet/freescale/fec_main.c
@@ -436,7 +436,6 @@ static int fec_enet_txq_submit_skb(struct fec_enet_priv_tx_q *txq,
/* Fill in a Tx ring entry */
bdp = txq->bd.cur;
- last_bdp = bdp;
/* Set buffer length and buffer pointer */
bufaddr = skb->data;
@@ -472,6 +471,7 @@ static int fec_enet_txq_submit_skb(struct fec_enet_priv_tx_q *txq,
return NETDEV_TX_OK;
}
} else {
+ last_bdp = bdp;
status |= (BD_ENET_TX_INTR | BD_ENET_TX_LAST);
if (fep->bufdesc_ex) {
estatus = BD_ENET_TX_INT;
--
2.5.0
More information about the linux-arm-kernel
mailing list