Re: [PATCH] fix minor bug in sungem.h

2005-09-01 Thread David S. Miller
From: Geoff Levand <[EMAIL PROTECTED]>
Date: Wed, 24 Aug 2005 17:23:11 -0700

> 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 <[EMAIL PROTECTED]>

Applied, thanks for catching this Geoff.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] fix minor bug in sungem.h

2005-08-24 Thread Geoff Levand
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 <[EMAIL PROTECTED]>

--- a/drivers/net/sungem.h  2005-08-19 14:35:50.0 -0700
+++ b/drivers/net/sungem.h  2005-08-24 17:14:18.0 -0700
@@ -1020,7 +1020,7 @@

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;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/