From: Manfred Spraul <manfred@colorfullife.com>
To: Jeff Garzik <jgarzik@pobox.com>
Cc: Ayaz Abdulla <AAbdulla@nvidia.com>, Netdev <netdev@oss.sgi.com>
Subject: [PATCH 3/2] forcedeth: Compile fix forcedeth 0.44
Date: Sun, 18 Sep 2005 16:18:05 +0200 [thread overview]
Message-ID: <432D771D.7050107@colorfullife.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 229 bytes --]
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@colorfullife.com>
[-- Attachment #2: patch-forcedeth-044a-compilefix --]
[-- Type: text/plain, Size: 521 bytes --]
--- 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;
dprintk(KERN_INFO "%s: nv_release_txskb for skbnr %d, skb %p\n",
next reply other threads:[~2005-09-18 14:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-09-18 14:18 Manfred Spraul [this message]
2005-10-21 21:23 ` [PATCH 3/2] forcedeth: Compile fix forcedeth 0.44 Jeff Garzik
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=432D771D.7050107@colorfullife.com \
--to=manfred@colorfullife.com \
--cc=AAbdulla@nvidia.com \
--cc=jgarzik@pobox.com \
--cc=netdev@oss.sgi.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.