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 <redacted>
Cc: Russell King <redacted>
Cc: Dmitry Baryshkov <redacted>
Cc: Lennert Buytenhek <kernel@wantstofly.org>
Cc: netdev@vger.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