From: Zheng Yongjun Date: Tue, 29 Dec 2020 13:53:01 +0000 (+0800) Subject: iavf: Use kzalloc for allocating only one thing X-Git-Tag: accepted/tizen/unified/20230118.172025~7901^2~413 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8a57965ef33d280cef25b75c707857e9977b04f5;p=platform%2Fkernel%2Flinux-rpi.git iavf: Use kzalloc for allocating only one thing Use kzalloc rather than kcalloc(1,...) The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ @@ - kcalloc(1, + kzalloc( ...) // Signed-off-by: Zheng Yongjun Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c b/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c index ed08ace..647e7fd 100644 --- a/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c +++ b/drivers/net/ethernet/intel/iavf/iavf_virtchnl.c @@ -911,7 +911,7 @@ static void iavf_print_link_message(struct iavf_adapter *adapter) return; } - speed = kcalloc(1, IAVF_MAX_SPEED_STRLEN, GFP_KERNEL); + speed = kzalloc(IAVF_MAX_SPEED_STRLEN, GFP_KERNEL); if (!speed) return;