summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/macb.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/macb.c b/drivers/net/macb.c
index 8575c838a8..28065e1e13 100644
--- a/drivers/net/macb.c
+++ b/drivers/net/macb.c
@@ -65,7 +65,6 @@ struct macb_device {
unsigned int rx_tail;
unsigned int tx_head;
- unsigned int tx_tail;
void *rx_buffer;
void *tx_buffer;
@@ -344,7 +343,7 @@ static void macb_init(struct macb_device *macb)
}
macb->tx_ring[TX_RING_SIZE - 1].addr |= MACB_BIT(TX_WRAP);
- macb->rx_tail = macb->tx_head = macb->tx_tail = 0;
+ macb->rx_tail = macb->tx_head = 0;
macb_configure_dma(macb);