diff options
author | Wei Ni <wni@nvidia.com> | 2019-02-19 12:27:03 +0800 |
---|---|---|
committer | Eduardo Valentin <edubezval@gmail.com> | 2019-02-20 17:23:37 -0800 |
commit | 3d88adf3ef17bbeb3799f3f64eb3f7a66416cdf4 (patch) | |
tree | 5917a47a92c0f9f79ef9aff6f986107a20d00d6c /drivers/thermal | |
parent | cd28561dce0f8dbdb5d8efd686933f3381f7ce90 (diff) | |
download | linux-3d88adf3ef17bbeb3799f3f64eb3f7a66416cdf4.tar.gz |
thermal: tegra: fix memory allocation
Fix memory allocation to store the pointers to
thermal_zone_device.
Signed-off-by: Wei Ni <wni@nvidia.com>
Acked-by: Thierry Reding <treding@nvidia.com>
Reviewed-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/tegra/soctherm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/tegra/soctherm.c b/drivers/thermal/tegra/soctherm.c index fa50484e1c84..b1ead6ea4c73 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; |