Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 28c01058 authored by Markus Elfring's avatar Markus Elfring Committed by Vinod Koul
Browse files

ste_dma40: Use kmalloc_array() in d40_hw_detect_init()



A multiplication for the size determination of a memory allocation
indicated that an array data structure should be processed.
Thus use the corresponding function "kmalloc_array".

This issue was detected also by using the Coccinelle software.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent e349d4b7
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -3301,7 +3301,7 @@ static struct d40_base * __init d40_hw_detect_init(struct platform_device *pdev)
	if (!base->lookup_log_chans)
	if (!base->lookup_log_chans)
		goto failure;
		goto failure;


	base->reg_val_backup_chan = kmalloc(base->num_phy_chans *
	base->reg_val_backup_chan = kmalloc_array(base->num_phy_chans,
						  sizeof(d40_backup_regs_chan),
						  sizeof(d40_backup_regs_chan),
						  GFP_KERNEL);
						  GFP_KERNEL);
	if (!base->reg_val_backup_chan)
	if (!base->reg_val_backup_chan)