drm/tegra: Use correct relocation target offsets

When copying a relocation from userspace, copy the correct target
offset.

Signed-off-by: David Ung <davidu@nvidia.com>
Fixes: 961e3beae3 ("drm/tegra: Make job submission 64-bit safe")
Cc: stable@vger.kernel.org
[treding@nvidia.com: provide a better commit message]
Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
David Ung 2015-01-20 18:37:35 -08:00 committed by Thierry Reding
parent 359ae687db
commit 31f40f8652
1 changed files with 1 additions and 1 deletions

View File

@ -293,7 +293,7 @@ static int host1x_reloc_copy_from_user(struct host1x_reloc *dest,
if (err < 0)
return err;
err = get_user(dest->target.offset, &src->cmdbuf.offset);
err = get_user(dest->target.offset, &src->target.offset);
if (err < 0)
return err;