From: Kenneth Lee Date: Tue, 9 Aug 2022 07:20:50 +0000 (-0700) Subject: ARM: OMAP2+: hwmod: Use kzalloc for allocating only one element X-Git-Tag: v6.6.7~3038^2~13^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=19050da1d1057a7bc73fd9039f94b7f63a00e54e;p=platform%2Fkernel%2Flinux-starfive.git ARM: OMAP2+: hwmod: Use kzalloc for allocating only one element Use kzalloc(...) rather than kcalloc(1, ...) because the number of elements we are specifying in this case is 1, so kzalloc would accomplish the same thing and we can simplify. Signed-off-by: Kenneth Lee Message-Id: <20220809072050.1733996-1-klee33@uw.edu> Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c index de3fd0b..aac4c4e 100644 --- a/arch/arm/mach-omap2/omap_hwmod.c +++ b/arch/arm/mach-omap2/omap_hwmod.c @@ -3454,7 +3454,7 @@ static int omap_hwmod_allocate_module(struct device *dev, struct omap_hwmod *oh, } if (list_empty(&oh->slave_ports)) { - oi = kcalloc(1, sizeof(*oi), GFP_KERNEL); + oi = kzalloc(sizeof(*oi), GFP_KERNEL); if (!oi) goto out_free_class;