ARM: OMAP2+: hwmod: Use kzalloc for allocating only one element
authorKenneth Lee <klee33@uw.edu>
Tue, 9 Aug 2022 07:20:50 +0000 (00:20 -0700)
committerTony Lindgren <tony@atomide.com>
Tue, 28 Mar 2023 05:45:55 +0000 (08:45 +0300)
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 <klee33@uw.edu>
Message-Id: <20220809072050.1733996-1-klee33@uw.edu>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/omap_hwmod.c

index de3fd0bc862dfc53daf78e5d085502881d3ad261..aac4c4ee2528170a3eb216edc4c5ca1f14788bd2 100644 (file)
@@ -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;