summaryrefslogtreecommitdiffstats
path: root/gralloc_gbm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gralloc_gbm.cpp')
-rw-r--r--gralloc_gbm.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/gralloc_gbm.cpp b/gralloc_gbm.cpp
index f162bf4..a0bc34d 100644
--- a/gralloc_gbm.cpp
+++ b/gralloc_gbm.cpp
@@ -280,13 +280,9 @@ static struct gralloc_gbm_bo_t *validate_handle(buffer_handle_t _handle,
if (!gbm)
return NULL;
- ALOGE("handle: name=%d pfd=%d\n", handle->name,
- handle->prime_fd);
- /* create the struct gralloc_gbm_bo_t locally */
- if (handle->name || handle->prime_fd >= 0)
- bo = gbm_import(gbm, handle);
- else /* an invalid handle */
- bo = NULL;
+ ALOGE("handle: pfd=%d\n", handle->prime_fd);
+
+ bo = gbm_import(gbm, handle);
if (bo) {
bo->imported = 1;
bo->handle = handle;