[U-Boot] [PATCH 3/8] net: emaclite: Use calloc instead of malloc
Michal Simek
monstr at monstr.eu
Fri Aug 26 14:47:18 CEST 2011
Simplify driver logic and clear eth_device structure
in one command.
Signed-off-by: Michal Simek <monstr at monstr.eu>
---
drivers/net/xilinx_emaclite.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/drivers/net/xilinx_emaclite.c b/drivers/net/xilinx_emaclite.c
index 2a5c5e1..28aab97 100644
--- a/drivers/net/xilinx_emaclite.c
+++ b/drivers/net/xilinx_emaclite.c
@@ -344,11 +344,10 @@ int xilinx_emaclite_initialize (bd_t *bis, int base_addr)
{
struct eth_device *dev;
- dev = malloc(sizeof(*dev));
+ dev = calloc(1, sizeof(*dev));
if (dev == NULL)
return -1;
- memset(dev, 0, sizeof(*dev));
sprintf(dev->name, "Xelite.%x", base_addr);
dev->iobase = base_addr;
--
1.5.5.6
More information about the U-Boot
mailing list