diff options
-rw-r--r-- | drivers/net/tg3.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/tg3.h b/drivers/net/tg3.h index 410703684e39..2938d18d12f7 100644 --- a/drivers/net/tg3.h +++ b/drivers/net/tg3.h | |||
@@ -2715,17 +2715,17 @@ struct tg3_napi { | |||
2715 | u32 last_irq_tag; | 2715 | u32 last_irq_tag; |
2716 | u32 int_mbox; | 2716 | u32 int_mbox; |
2717 | u32 coal_now; | 2717 | u32 coal_now; |
2718 | u32 tx_prod; | ||
2719 | u32 tx_cons; | ||
2720 | u32 tx_pending; | ||
2721 | u32 prodmbox; | ||
2722 | 2718 | ||
2723 | u32 consmbox; | 2719 | u32 consmbox ____cacheline_aligned; |
2724 | u32 rx_rcb_ptr; | 2720 | u32 rx_rcb_ptr; |
2725 | u16 *rx_rcb_prod_idx; | 2721 | u16 *rx_rcb_prod_idx; |
2726 | struct tg3_rx_prodring_set prodring; | 2722 | struct tg3_rx_prodring_set prodring; |
2727 | |||
2728 | struct tg3_rx_buffer_desc *rx_rcb; | 2723 | struct tg3_rx_buffer_desc *rx_rcb; |
2724 | |||
2725 | u32 tx_prod ____cacheline_aligned; | ||
2726 | u32 tx_cons; | ||
2727 | u32 tx_pending; | ||
2728 | u32 prodmbox; | ||
2729 | struct tg3_tx_buffer_desc *tx_ring; | 2729 | struct tg3_tx_buffer_desc *tx_ring; |
2730 | struct ring_info *tx_buffers; | 2730 | struct ring_info *tx_buffers; |
2731 | 2731 | ||