pwm: pwm-mediatek: Allocate clk_pwms with devm_kmalloc_array
authorAngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Mon, 14 Feb 2022 14:03:38 +0000 (15:03 +0100)
committerThierry Reding <thierry.reding@gmail.com>
Thu, 24 Feb 2022 13:50:40 +0000 (14:50 +0100)
Switch from devm_kcalloc to devm_kmalloc_array when allocating clk_pwms,
as this structure is being filled right after allocating it, hence
there is no need to zero it out beforehand.

Signed-off-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
drivers/pwm/pwm-mediatek.c

index c7d5ca0..6b39f3d 100644 (file)
@@ -221,7 +221,7 @@ static int pwm_mediatek_probe(struct platform_device *pdev)
        if (IS_ERR(pc->regs))
                return PTR_ERR(pc->regs);
 
-       pc->clk_pwms = devm_kcalloc(&pdev->dev, pc->soc->num_pwms,
+       pc->clk_pwms = devm_kmalloc_array(&pdev->dev, pc->soc->num_pwms,
                                    sizeof(*pc->clk_pwms), GFP_KERNEL);
        if (!pc->clk_pwms)
                return -ENOMEM;