summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/exynos/exynos_drm_dmabuf.c
diff options
context:
space:
mode:
authorSeung-Woo Kim <sw0312.kim@samsung.com>2012-12-20 16:39:35 +0900
committerInki Dae <inki.dae@samsung.com>2013-01-04 15:54:32 +0900
commitf4fd9bd4863ebbccbcef113c03b9b628a8242a64 (patch)
treee551d6819689aa78304c4283f3f70995b99b6cd8 /drivers/gpu/drm/exynos/exynos_drm_dmabuf.c
parenteda85d6ad490923152544fba0473798b6cc0edf6 (diff)
downloadlinux-3.10-f4fd9bd4863ebbccbcef113c03b9b628a8242a64.tar.gz
linux-3.10-f4fd9bd4863ebbccbcef113c03b9b628a8242a64.tar.bz2
linux-3.10-f4fd9bd4863ebbccbcef113c03b9b628a8242a64.zip
drm/exynos: fix flags in dma buf exporting
This patch fixes flags passed to dma buf exporting. Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com> Signed-off-by: Kyungmin.park <kyungmin.park@samsung.com> Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_dmabuf.c')
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_dmabuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_dmabuf.c b/drivers/gpu/drm/exynos/exynos_drm_dmabuf.c
index 61d5a8402eb..e98b096aaf3 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_dmabuf.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_dmabuf.c
@@ -222,7 +222,7 @@ struct dma_buf *exynos_dmabuf_prime_export(struct drm_device *drm_dev,
struct exynos_drm_gem_obj *exynos_gem_obj = to_exynos_gem_obj(obj);
return dma_buf_export(exynos_gem_obj, &exynos_dmabuf_ops,
- exynos_gem_obj->base.size, 0600);
+ exynos_gem_obj->base.size, flags);
}
struct drm_gem_object *exynos_dmabuf_prime_import(struct drm_device *drm_dev,