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

iwamatsu at nigauri.org iwamatsu at nigauri.org
Thu Oct 14 05:53:46 CEST 2010


From: Nobuhiro Iwamatsu <iwamatsu at nigauri.org>

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