summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8fad46b)
raw | patch | inline | side by side (parent: 8fad46b)
author | Cooper Yuan <cooperyuan@gmail.com> | |
Fri, 6 Jul 2012 14:26:49 +0000 (16:26 +0200) | ||
committer | Cooper Yuan <cooperyuan@gmail.com> | |
Fri, 6 Jul 2012 14:36:31 +0000 (16:36 +0200) |
exynos/exynos_drm.h | patch | blob | history |
diff --git a/exynos/exynos_drm.h b/exynos/exynos_drm.h
index dc2eef363074af97cd81b3eb1c06ccf1a0334346..aa97b22380e6030aa2116aee94a119ed7468b039 100644 (file)
--- a/exynos/exynos_drm.h
+++ b/exynos/exynos_drm.h
* 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
*/
struct drm_exynos_gem_mmap {
unsigned int handle;
- unsigned int size;
+ unsigned int pad;
+ uint64_t size;
uint64_t mapped;
};