提交 b47a0491 编写于 作者: T Thierry Reding

gpu: host1x: syncpt: Use kcalloc() instead of kzalloc()

Use kcalloc() to allocate arrays rather than passing the product of the
size per element by the number of elements to kzalloc().
Signed-off-by: NThierry Reding <treding@nvidia.com>
上级 ebb2475c
...@@ -343,12 +343,12 @@ int host1x_syncpt_init(struct host1x *host) ...@@ -343,12 +343,12 @@ int host1x_syncpt_init(struct host1x *host)
struct host1x_syncpt *syncpt; struct host1x_syncpt *syncpt;
unsigned int i; unsigned int i;
syncpt = devm_kzalloc(host->dev, sizeof(*syncpt) * host->info->nb_pts, syncpt = devm_kcalloc(host->dev, host->info->nb_pts, sizeof(*syncpt),
GFP_KERNEL); GFP_KERNEL);
if (!syncpt) if (!syncpt)
return -ENOMEM; return -ENOMEM;
bases = devm_kzalloc(host->dev, sizeof(*bases) * host->info->nb_bases, bases = devm_kcalloc(host->dev, host->info->nb_bases, sizeof(*bases),
GFP_KERNEL); GFP_KERNEL);
if (!bases) if (!bases)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册