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

drm/tegra: vic: Handle tegra_drm_alloc() failure

This function can return one of several errors in an ERR_PTR()-encoded
pointer, so make sure to propogate those on failure.
Suggested-by: NRobin Murphy <robin.murphy@arm.com>
Signed-off-by: NThierry Reding <treding@nvidia.com>
上级 4abfc0e3
...@@ -237,6 +237,8 @@ static int vic_load_firmware(struct vic *vic) ...@@ -237,6 +237,8 @@ static int vic_load_firmware(struct vic *vic)
return -ENOMEM; return -ENOMEM;
} else { } else {
virt = tegra_drm_alloc(tegra, size, &iova); virt = tegra_drm_alloc(tegra, size, &iova);
if (IS_ERR(virt))
return PTR_ERR(virt);
} }
vic->falcon.firmware.virt = virt; vic->falcon.firmware.virt = virt;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册