Skip to content

Commit

Permalink
drm/exynos: fix build warning to exynos_drm_gem.c
Browse files Browse the repository at this point in the history
Signed-off-by: Inki Dae <daeinki@gmail.com>
  • Loading branch information
Inki Dae committed Aug 30, 2015
1 parent fbbb1e1 commit 50002d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/exynos/exynos_drm_gem.c
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ exynos_drm_gem_prime_import_sg_table(struct drm_device *dev,
exynos_gem_obj = exynos_drm_gem_init(dev, attach->dmabuf->size);
if (IS_ERR(exynos_gem_obj)) {
ret = PTR_ERR(exynos_gem_obj);
goto err;
return ERR_PTR(ret);
}

exynos_gem_obj->dma_addr = sg_dma_address(sgt->sgl);
Expand Down

0 comments on commit 50002d4

Please sign in to comment.