Re: [PATCH 02/10] net: rtl8139: Switch from malloc()+memset() to calloc()

2020-06-12 Thread Tom Rini
On Sat, May 09, 2020 at 10:34:36PM +0200, Marek Vasut wrote: > Replace malloc()+memset() combination with calloc(), no functional change. > > Signed-off-by: Marek Vasut > Cc: Joe Hershberger Applied to u-boot/next, thanks! -- Tom signature.asc Description: PGP signature

[PATCH 02/10] net: rtl8139: Switch from malloc()+memset() to calloc()

2020-05-09 Thread Marek Vasut
Replace malloc()+memset() combination with calloc(), no functional change. Signed-off-by: Marek Vasut Cc: Joe Hershberger --- drivers/net/rtl8139.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/rtl8139.c b/drivers/net/rtl8139.c index adee618543..aabaacabc5 10