summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorInki Dae <inki.dae@samsung.com>2012-05-14 20:04:38 +0900
committerInki Dae <inki.dae@samsung.com>2012-06-05 11:51:47 +0900
commit13b87b27421e12f82ebbaac018cea30f82e5c33e (patch)
treedce0daf929e89cc750700737e421f81ea3a5945d
parent363b06aaa59fc20d0a9c5a5a9ce1fa2c45946700 (diff)
downloadlinux-13b87b27421e12f82ebbaac018cea30f82e5c33e.tar.gz
linux-13b87b27421e12f82ebbaac018cea30f82e5c33e.tar.xz
linux-13b87b27421e12f82ebbaac018cea30f82e5c33e.zip
drm/exynos: fixed size type.
size type of drm_exynos_gem_mmap struct is changed to uint64_t and it adds pad for the struct to be aligned as 64bit. Signed-off-by: Inki Dae <inki.dae@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
-rw-r--r--include/drm/exynos_drm.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/drm/exynos_drm.h b/include/drm/exynos_drm.h
index b6d7ce92eadd..68733587e700 100644
--- a/include/drm/exynos_drm.h
+++ b/include/drm/exynos_drm.h
@@ -64,6 +64,7 @@ struct drm_exynos_gem_map_off {
* A structure for mapping buffer.
*
* @handle: a handle to gem object created.
+ * @pad: just padding to be 64-bit aligned.
* @size: memory size to be mapped.
* @mapped: having user virtual address mmaped.
* - this variable would be filled by exynos gem module
@@ -72,7 +73,8 @@ struct drm_exynos_gem_map_off {
*/
struct drm_exynos_gem_mmap {
unsigned int handle;
- unsigned int size;
+ unsigned int pad;
+ uint64_t size;
uint64_t mapped;
};