[U-Boot] [PATCH 05/10 v2] net: fec_mxc: Add initialized eth_device structure

Nobuhiro Iwamatsu iwamatsu at nigauri.org
Tue Oct 19 07:03:42 CEST 2010


This prevents access to the member of eth_device which is not initialized.

Signed-off-by: Nobuhiro Iwamatsu <iwamatsu at nigauri.org>
CC: Ben Warren <biggerbadderben at gmail.com>
---
 drivers/net/fec_mxc.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c
index 2d4ffed..071276e 100644
--- a/drivers/net/fec_mxc.c
+++ b/drivers/net/fec_mxc.c
@@ -707,6 +707,7 @@ static int fec_probe(bd_t *bd)
 		puts("fec_mxc: not enough malloc memory\n");
 		return -ENOMEM;
 	}
+	memset(edev, 0, sizeof(*edev));
 	edev->priv = fec;
 	edev->init = fec_init;
 	edev->send = fec_send;
-- 
1.7.1



More information about the U-Boot mailing list