[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1544780993-20744-3-git-send-email-wni@nvidia.com>
Date: Fri, 14 Dec 2018 17:49:51 +0800
From: Wei Ni <wni@...dia.com>
To: <rui.zhang@...el.com>, <edubezval@...il.com>
CC: <thierry.reding@...il.com>, <daniel.lezcano@...aro.org>,
<linux-tegra@...r.kernel.org>, <srikars@...dia.com>,
<linux-kernel@...r.kernel.org>, Wei Ni <wni@...dia.com>
Subject: [PATCH v6 2/4] thermal: tegra: fix memory allocation
Fix memory allocation to store the pointers to
thermal_zone_device.
Signed-off-by: Wei Ni <wni@...dia.com>
Acked-by: Thierry Reding <treding@...dia.com>
---
drivers/thermal/tegra/soctherm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/thermal/tegra/soctherm.c b/drivers/thermal/tegra/soctherm.c
index f07de8258e93..fd2703c0cfc5 100644
--- a/drivers/thermal/tegra/soctherm.c
+++ b/drivers/thermal/tegra/soctherm.c
@@ -1339,7 +1339,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;
--
2.7.4
Powered by blists - more mailing lists