summary refs log tree commit diff
diff options
context:
space:
mode:
authorInki Dae <inki.dae@samsung.com>2011-11-04 21:09:50 +0900
committerDave Airlie <airlied@redhat.com>2011-11-11 12:01:49 +0000
commit6c3d904b48e44bd9c3121c24efb87c9d39d7736c (patch)
tree0bdb03ce9b0276cd7faa66a4454557656d7ec710
parent44a1dabf4cfb787459bfbff305a2a1cda628766d (diff)
downloadlinux-6c3d904b48e44bd9c3121c24efb87c9d39d7736c.tar.gz
drm/exynos: added padding to be 64-bit align.
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r--include/drm/exynos_drm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/exynos_drm.h b/include/drm/exynos_drm.h
index 874c4d271328..1d161cb3aca5 100644
--- a/include/drm/exynos_drm.h
+++ b/include/drm/exynos_drm.h
@@ -36,11 +36,13 @@
  *	- this size value would be page-aligned internally.
  * @flags: user request for setting memory type or cache attributes.
  * @handle: returned handle for the object.
+ * @pad: just padding to be 64-bit aligned.
  */
 struct drm_exynos_gem_create {
 	unsigned int size;
 	unsigned int flags;
 	unsigned int handle;
+	unsigned int pad;
 };
 
 /**