[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1249677761-19470-5-git-send-email-u.kleine-koenig@pengutronix.de>
Date: Fri, 7 Aug 2009 22:42:40 +0200
From: Uwe Kleine-König
<u.kleine-koenig@...gutronix.de>
To: Thomas Gleixner <tglx@...utronix.de>
Cc: LKML <linux-kernel@...r.kernel.org>,
rt-users <linux-rt-users@...r.kernel.org>,
Russell King <linux@....linux.org.uk>,
Dmitry Baryshkov <dbaryshkov@...il.com>,
Lennert Buytenhek <kernel@...tstofly.org>,
netdev@...r.kernel.org
Subject: [PATCH 5/6] [NET] ixp2000/enp2611: don't set non-existent member get_stats
This fixes a build failure for 2.6.31-rc5 (ARCH=arm, ixp2000_defconfig):
CC drivers/net/ixp2000/enp2611.o
drivers/net/ixp2000/enp2611.c: In function 'enp2611_init_module':
drivers/net/ixp2000/enp2611.c:213: error: 'struct net_device' has no member named 'get_stats'
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@...gutronix.de>
Cc: Russell King <linux@....linux.org.uk>
Cc: Dmitry Baryshkov <dbaryshkov@...il.com>
Cc: Lennert Buytenhek <kernel@...tstofly.org>
Cc: netdev@...r.kernel.org
---
Hello,
obviously this has the downside that the stats won't work, I let the fix
for someone else :-)
Best regards
Uwe
---
drivers/net/ixp2000/enp2611.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/ixp2000/enp2611.c b/drivers/net/ixp2000/enp2611.c
index b02a981..d6ef176 100644
--- a/drivers/net/ixp2000/enp2611.c
+++ b/drivers/net/ixp2000/enp2611.c
@@ -210,7 +210,7 @@ static int __init enp2611_init_module(void)
return -ENOMEM;
}
- nds[i]->get_stats = enp2611_get_stats;
+ /* nds[i]->get_stats = enp2611_get_stats; */
pm3386_init_port(i);
pm3386_get_mac(i, nds[i]->dev_addr);
}
--
1.6.3.3
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists