summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChia-I Wu <olv@google.com>2017-07-15 00:23:06 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-07-15 00:23:06 +0000
commit60662f40c5491933bcefc17be750e7054462a019 (patch)
treeef1d1849b15597a5a6c918d705c77fe54f1af192
parent94a031d94f8b9cdec606cb3518973dc75f475ddd (diff)
parentc00235d517181891740e5bdffd8dc5af7ea56a41 (diff)
downloadhikey-oreo-mr1-dev.tar.gz
gralloc960: make register framebuffer no-op am: 8853aaea50 am: 7bc6394d88 am: 93af07a329oreo-mr1-dev
am: c00235d517 Change-Id: I66f9a4545acd14c1523f66654a6f56a2155eb125
-rw-r--r--gralloc960/gralloc_module.cpp3
-rw-r--r--gralloc960/gralloc_priv.h3
2 files changed, 4 insertions, 2 deletions
diff --git a/gralloc960/gralloc_module.cpp b/gralloc960/gralloc_module.cpp
index 28d361d4..df2d82e3 100644
--- a/gralloc960/gralloc_module.cpp
+++ b/gralloc960/gralloc_module.cpp
@@ -72,7 +72,8 @@ static int gralloc_register_buffer(gralloc_module_t const* module, buffer_handle
if (hnd->flags & private_handle_t::PRIV_FLAGS_FRAMEBUFFER)
{
- AERR( "Can't register buffer %p as it is a framebuffer", handle );
+ AINF("Register framebuffer 0x%p is no-op", handle);
+ retval = 0;
}
else if (hnd->flags & private_handle_t::PRIV_FLAGS_USES_ION)
{
diff --git a/gralloc960/gralloc_priv.h b/gralloc960/gralloc_priv.h
index 7c4b8359..55feb67e 100644
--- a/gralloc960/gralloc_priv.h
+++ b/gralloc960/gralloc_priv.h
@@ -209,7 +209,8 @@ struct private_handle_t
#ifdef __cplusplus
/*
* We track the number of integers in the structure. There are 16 unconditional
- * integers (magic - pid, yuv_info, fd and offset). Note that the fd element is
+ * integers (magic - pid, yuv_info, shallow_fbdev_fd and offset).
+ * Note that the shallow_fbdev_fd element is
* considered an int not an fd because it is not intended to be used outside the
* surface flinger process. The GRALLOC_ARM_NUM_INTS variable is used to track the
* number of integers that are conditionally included. Similar considerations apply