Skip to content

Commit

Permalink
[SUNGEM]: fix minor bug in sungem.h
Browse files Browse the repository at this point in the history
This changes the Sun Gem Ether driver's tx ring buffer 
length to the proper constant.  Currently TX_RING_SIZE 
and RX_RING_SIZE are equal, so no malfunction occurs.

Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Geoff Levand authored and David S. Miller committed Sep 2, 2005
1 parent 732db65 commit 0014c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/sungem.h
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ struct gem {

struct gem_init_block *init_block;
struct sk_buff *rx_skbs[RX_RING_SIZE];
struct sk_buff *tx_skbs[RX_RING_SIZE];
struct sk_buff *tx_skbs[TX_RING_SIZE];
dma_addr_t gblock_dvma;

struct pci_dev *pdev;
Expand Down

0 comments on commit 0014c61

Please sign in to comment.