exynos: gralloc: replace struct ion_handle with ion_user_handle_t
authorRom Lemarchand <romlem@google.com>
Thu, 24 Oct 2013 18:22:55 +0000 (11:22 -0700)
committerColin Cross <ccross@android.com>
Thu, 19 Dec 2013 22:00:28 +0000 (14:00 -0800)
Replace struct ion_handle with ion_user_handle_t to match new kernel headers

Change-Id: Iefff2036f01dccbd47f0f0e6eef09e804e1e2ea0

include/gralloc_priv.h

index bf2940eae624c304e6475b89e300306badcdb8fd..bce84e425e017c400715872fdefa9e3f9ca1b416 100644 (file)
@@ -33,6 +33,7 @@
 
 struct private_module_t;
 struct private_handle_t;
+typedef int ion_user_handle_t;
 
 struct private_module_t {
     gralloc_module_t base;
@@ -96,9 +97,9 @@ struct private_handle_t {
     void    *base;
     void    *base1;
     void    *base2;
-    struct ion_handle *handle;
-    struct ion_handle *handle1;
-    struct ion_handle *handle2;
+    ion_user_handle_t handle;
+    ion_user_handle_t handle1;
+    ion_user_handle_t handle2;
 
 #ifdef __cplusplus
     static const int sNumFds = 3;