This combination of functions can be replaced with calloc(), make it so. Signed-off-by: Marek Vasut <marek.vasut+rene...@gmail.com> Cc: Daniel Schwierzeck <daniel.schwierz...@gmail.com> Cc: Joe Hershberger <joe.hershber...@ni.com> --- drivers/net/pcnet.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/net/pcnet.c b/drivers/net/pcnet.c index 5bbd290eec..f5e14ca60d 100644 --- a/drivers/net/pcnet.c +++ b/drivers/net/pcnet.c @@ -181,12 +181,11 @@ int pcnet_initialize(bd_t *bis) /* * Allocate and pre-fill the device structure. */ - dev = (struct eth_device *)malloc(sizeof(*dev)); + dev = calloc(1, sizeof(*dev)); if (!dev) { printf("pcnet: Can not allocate memory\n"); break; } - memset(dev, 0, sizeof(*dev)); dev->priv = (void *)(unsigned long)devbusfn; sprintf(dev->name, "pcnet#%d", dev_nr); -- 2.25.1