Commit 6615b20f authored by Mikko Rapeli's avatar Mikko Rapeli Committed by Gabriel Laskar

exynos_drm.h: use __u64 from linux/types.h

Fixes userspace compilation error:

drm/exynos_drm.h:30:2: error: unknown type name ‘uint64_t’
Signed-off-by: default avatarMikko Rapeli <mikko.rapeli@iki.fi>
parent 05623b7f
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
* - this handle will be set by gem module of kernel side. * - this handle will be set by gem module of kernel side.
*/ */
struct drm_exynos_gem_create { struct drm_exynos_gem_create {
uint64_t size; __u64 size;
unsigned int flags; unsigned int flags;
unsigned int handle; unsigned int handle;
}; };
...@@ -44,7 +44,7 @@ struct drm_exynos_gem_create { ...@@ -44,7 +44,7 @@ struct drm_exynos_gem_create {
struct drm_exynos_gem_info { struct drm_exynos_gem_info {
unsigned int handle; unsigned int handle;
unsigned int flags; unsigned int flags;
uint64_t size; __u64 size;
}; };
/** /**
...@@ -58,7 +58,7 @@ struct drm_exynos_gem_info { ...@@ -58,7 +58,7 @@ struct drm_exynos_gem_info {
struct drm_exynos_vidi_connection { struct drm_exynos_vidi_connection {
unsigned int connection; unsigned int connection;
unsigned int extensions; unsigned int extensions;
uint64_t edid; __u64 edid;
}; };
/* memory type definitions. */ /* memory type definitions. */
......
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