summaryrefslogtreecommitdiffstats
path: root/gralloc_gbm.cpp
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2017-04-13 13:53:26 -0500
committerRob Herring <robh@kernel.org>2017-04-13 13:53:26 -0500
commit561c25462d1821bae5960adeb7e1c28b40adc0fd (patch)
tree64ff7968b5e7b6bb70d27b95a491945f8a6f3631 /gralloc_gbm.cpp
parent95c1cfb06d41535841520e3ea8f625252fa576b9 (diff)
downloadgbm_gralloc-561c25462d1821bae5960adeb7e1c28b40adc0fd.tar.gz
gbm_gralloc-561c25462d1821bae5960adeb7e1c28b40adc0fd.tar.xz
Quiet log prints changing them to verbose level
Quiet down various informational tracing messages switching them to verbose log level Change-Id: I0a78a9bcb1f807dc2db060ab1551cd5f62fa3f2d Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'gralloc_gbm.cpp')
-rw-r--r--gralloc_gbm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gralloc_gbm.cpp b/gralloc_gbm.cpp
index 6b7c0b5..ea1035f 100644
--- a/gralloc_gbm.cpp
+++ b/gralloc_gbm.cpp
@@ -180,7 +180,7 @@ static struct gralloc_gbm_bo_t *gbm_alloc(struct gbm_device *gbm,
height += handle->height / 2;
}
- ALOGD("create BO, size=%dx%d, fmt=%d, usage=%x",
+ ALOGV("create BO, size=%dx%d, fmt=%d, usage=%x",
handle->width, handle->height, handle->format, usage);
buf->bo = gbm_bo_create(gbm, width, height, format, usage);
if (!buf->bo) {
@@ -228,7 +228,7 @@ static int gbm_map(struct gralloc_gbm_bo_t *bo, int x, int y, int w, int h,
flags |= GBM_BO_TRANSFER_WRITE;
*addr = gbm_bo_map(bo->bo, 0, 0, x + w, y + h, flags, &stride, &bo->map_data);
- ALOGE("mapped bo %p (%d, %d)-(%d, %d) at %p", bo, x, y, w, h, *addr);
+ ALOGV("mapped bo %p (%d, %d)-(%d, %d) at %p", bo, x, y, w, h, *addr);
if (*addr == NULL)
return -ENOMEM;
@@ -305,7 +305,7 @@ static struct gralloc_gbm_bo_t *validate_handle(buffer_handle_t _handle,
if (!gbm)
return NULL;
- ALOGE("handle: pfd=%d\n", handle->prime_fd);
+ ALOGV("handle: pfd=%d\n", handle->prime_fd);
bo = gbm_import(gbm, handle);
if (bo) {