[PATCH 5/6] [NET] ixp2000/enp2611: don't set non-existent member get_stats

From: Uwe Kleine-KÃnig
Date: Fri Aug 07 2009 - 16:43:25 EST


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@xxxxxxxxxxxxxx>
Cc: Russell King <linux@xxxxxxxxxxxxxxxx>
Cc: Dmitry Baryshkov <dbaryshkov@xxxxxxxxx>
Cc: Lennert Buytenhek <kernel@xxxxxxxxxxxxxx>
Cc: netdev@xxxxxxxxxxxxxxx
---
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 linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/