aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenneth Lee <klee33@uw.edu>2022-08-09 00:20:50 -0700
committerTony Lindgren <tony@atomide.com>2023-03-28 08:45:55 +0300
commit19050da1d1057a7bc73fd9039f94b7f63a00e54e (patch)
treefd3ba7d5aa826e7e9282c5911eda95cd7940304a
parent89e990559c378e06d2b2ef4f5dd6e963795cb7d8 (diff)
downloadlinux-omap-omap-for-v6.4/cleanup.tar.gz
ARM: OMAP2+: hwmod: Use kzalloc for allocating only one elementomap-for-v6.4/cleanup-signedomap-for-v6.4/cleanup
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>
-rw-r--r--arch/arm/mach-omap2/omap_hwmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
index de3fd0bc862df..aac4c4ee25281 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;