Commit 13b87b27 authored by Inki Dae's avatar Inki Dae

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: default avatarInki Dae <inki.dae@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
parent 363b06aa
...@@ -64,6 +64,7 @@ struct drm_exynos_gem_map_off { ...@@ -64,6 +64,7 @@ struct drm_exynos_gem_map_off {
* A structure for mapping buffer. * A structure for mapping buffer.
* *
* @handle: a handle to gem object created. * @handle: a handle to gem object created.
* @pad: just padding to be 64-bit aligned.
* @size: memory size to be mapped. * @size: memory size to be mapped.
* @mapped: having user virtual address mmaped. * @mapped: having user virtual address mmaped.
* - this variable would be filled by exynos gem module * - this variable would be filled by exynos gem module
...@@ -72,7 +73,8 @@ struct drm_exynos_gem_map_off { ...@@ -72,7 +73,8 @@ struct drm_exynos_gem_map_off {
*/ */
struct drm_exynos_gem_mmap { struct drm_exynos_gem_mmap {
unsigned int handle; unsigned int handle;
unsigned int size; unsigned int pad;
uint64_t size;
uint64_t mapped; uint64_t mapped;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment