Manfred Spraul wrote:
Hi,
forcedeth-0.44 contains a spurious ; in nv_release_txskb. gcc-4 compiles
it with a warning, older compilers might reject it.
The attached onliner fixes that, sorry.
Signed-off-By: Manfred Spraul <manfred@xxxxxxxxxxxxxxxx>
------------------------------------------------------------------------
--- 2.6/drivers/net/forcedeth.c 2005-09-18 16:12:10.000000000 +0200
+++ build-2.6/drivers/net/forcedeth.c 2005-09-18 16:14:19.000000000 +0200
@@ -923,7 +923,7 @@ static int nv_init_ring(struct net_devic
static void nv_release_txskb(struct net_device *dev, unsigned int skbnr)
{
struct fe_priv *np = get_nvpriv(dev);
- struct sk_buff *skb = np->tx_skbuff[skbnr];;
+ struct sk_buff *skb = np->tx_skbuff[skbnr];
unsigned int j, entry, fragments;
obviously OK, but dropped since the previous patch was dropped
|