netdev
[Top] [All Lists]

[patch] gcc-4.0 fix for acenic

To: torvalds@xxxxxxxx
Subject: [patch] gcc-4.0 fix for acenic
From: Randolph Chung <randolph@xxxxxxxxx>
Date: Wed, 10 Nov 2004 11:44:01 -0800
Cc: netdev@xxxxxxxxxxx
Reply-to: Randolph Chung <randolph@xxxxxxxxx>
Sender: netdev-bounce@xxxxxxxxxxx
User-agent: Mutt/1.5.5.1+cvs20040105i
Small fix to compile acenic with gcc-4.0. gcc no longer accepts static
function prototypes inside a function definition. This is ugly anyway...

Signed-off-by: Randolph Chung <tausq@xxxxxxxxxx>
Acked-by: Jes Sorensen

Index: drivers/net/acenic.c
===================================================================
RCS file: /var/cvs/linux-2.6/drivers/net/acenic.c,v
retrieving revision 1.12
diff -u -p -r1.12 acenic.c
--- linux/drivers/net/acenic.c  21 Oct 2004 18:59:05 -0000      1.12
+++ linux/drivers/net/acenic.c  10 Nov 2004 19:33:43 -0000
@@ -450,6 +450,7 @@ static char version[] __initdata = 
 static int ace_get_settings(struct net_device *, struct ethtool_cmd *);
 static int ace_set_settings(struct net_device *, struct ethtool_cmd *);
 static void ace_get_drvinfo(struct net_device *, struct ethtool_drvinfo *);
+static void ace_watchdog(struct net_device *dev);
 
 static struct ethtool_ops ace_ethtool_ops = {
        .get_settings = ace_get_settings,
@@ -485,7 +486,6 @@ static int __devinit acenic_probe_one(st
        dev->vlan_rx_kill_vid = ace_vlan_rx_kill_vid;
 #endif
        if (1) {
-               static void ace_watchdog(struct net_device *dev);
                dev->tx_timeout = &ace_watchdog;
                dev->watchdog_timeo = 5*HZ;
        }
-- 
Randolph Chung
Debian GNU/Linux Developer, hppa/ia64 ports
http://www.tausq.org/

<Prev in Thread] Current Thread [Next in Thread>
  • [patch] gcc-4.0 fix for acenic, Randolph Chung <=