[PATCH] pm3386: zero stats properly

Zero our stats structure properly.

Signed-off-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
diff --git a/drivers/net/ixp2000/pm3386.c b/drivers/net/ixp2000/pm3386.c
index cf0681f..df960f1 100644
--- a/drivers/net/ixp2000/pm3386.c
+++ b/drivers/net/ixp2000/pm3386.c
@@ -238,7 +238,7 @@
 	while (pm3386_port_reg_read(port, 0x500, 0x100) & 0x0001)
 		;
 
-	memset(stats, 0, sizeof(stats));
+	memset(stats, 0, sizeof(*stats));
 
 	stats->rx_packets = pm3386_get_stat(port, 0x510);
 	stats->tx_packets = pm3386_get_stat(port, 0x590);