diff options
Diffstat (limited to 'drivers/net/mv643xx_eth.h')
-rw-r--r-- | drivers/net/mv643xx_eth.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/mv643xx_eth.h b/drivers/net/mv643xx_eth.h index ef83906f88e4..345f970d122c 100644 --- a/drivers/net/mv643xx_eth.h +++ b/drivers/net/mv643xx_eth.h | |||
@@ -371,12 +371,12 @@ struct mv643xx_private { | |||
371 | spinlock_t lock; | 371 | spinlock_t lock; |
372 | /* Size of Tx Ring per queue */ | 372 | /* Size of Tx Ring per queue */ |
373 | unsigned int tx_ring_size; | 373 | unsigned int tx_ring_size; |
374 | /* Ammont of SKBs outstanding on Tx queue */ | 374 | /* Number of tx descriptors in use */ |
375 | unsigned int tx_ring_skbs; | 375 | unsigned int tx_desc_count; |
376 | /* Size of Rx Ring per queue */ | 376 | /* Size of Rx Ring per queue */ |
377 | unsigned int rx_ring_size; | 377 | unsigned int rx_ring_size; |
378 | /* Ammount of SKBs allocated to Rx Ring per queue */ | 378 | /* Number of rx descriptors in use */ |
379 | unsigned int rx_ring_skbs; | 379 | unsigned int rx_desc_count; |
380 | 380 | ||
381 | /* | 381 | /* |
382 | * rx_task used to fill RX ring out of bottom half context | 382 | * rx_task used to fill RX ring out of bottom half context |