From: Wei Ni Date: Tue, 19 Feb 2019 04:27:03 +0000 (+0800) Subject: thermal: tegra: fix memory allocation X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3d88adf3ef17bbeb3799f3f64eb3f7a66416cdf4;p=linux.git thermal: tegra: fix memory allocation Fix memory allocation to store the pointers to thermal_zone_device. Signed-off-by: Wei Ni Acked-by: Thierry Reding Reviewed-by: Daniel Lezcano Signed-off-by: Eduardo Valentin --- diff --git a/drivers/thermal/tegra/soctherm.c b/drivers/thermal/tegra/soctherm.c index fa50484e1c84c..b1ead6ea4c73a 100644 --- a/drivers/thermal/tegra/soctherm.c +++ b/drivers/thermal/tegra/soctherm.c @@ -1329,7 +1329,7 @@ static int tegra_soctherm_probe(struct platform_device *pdev) } tegra->thermctl_tzs = devm_kcalloc(&pdev->dev, - soc->num_ttgs, sizeof(*z), + soc->num_ttgs, sizeof(z), GFP_KERNEL); if (!tegra->thermctl_tzs) return -ENOMEM;