瀏覽代碼

gpio: tegra: Prefer kcalloc() over kzalloc() with multiplies

Rather than manually compute the size of an array, pass the number and
element size to kcalloc().

Signed-off-by: Thierry Reding <treding@nvidia.com>
Acked-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Thierry Reding 8 年之前
父節點
當前提交
9b88226924
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      drivers/gpio/gpio-tegra.c

+ 2 - 2
drivers/gpio/gpio-tegra.c

@@ -622,10 +622,10 @@ static int tegra_gpio_probe(struct platform_device *pdev)
 	if (tgi->soc->debounce_supported)
 	if (tgi->soc->debounce_supported)
 		tgi->gc.set_config = tegra_gpio_set_config;
 		tgi->gc.set_config = tegra_gpio_set_config;
 
 
-	tgi->bank_info = devm_kzalloc(&pdev->dev, tgi->bank_count *
+	tgi->bank_info = devm_kcalloc(&pdev->dev, tgi->bank_count,
 				      sizeof(*tgi->bank_info), GFP_KERNEL);
 				      sizeof(*tgi->bank_info), GFP_KERNEL);
 	if (!tgi->bank_info)
 	if (!tgi->bank_info)
-		return -ENODEV;
+		return -ENOMEM;
 
 
 	tgi->irq_domain = irq_domain_add_linear(pdev->dev.of_node,
 	tgi->irq_domain = irq_domain_add_linear(pdev->dev.of_node,
 						tgi->gc.ngpio,
 						tgi->gc.ngpio,