summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChangyeon Lee <cyeon.lee@samsung.com>2021-09-01 20:45:02 +0900
committerChangyeon Lee <cyeon.lee@samsung.com>2021-09-02 11:57:37 +0900
commita88ff39d4297e9aeef7ae7e4c5db88a6dfa9a471 (patch)
tree581ea28f0bada3ac3782cd3e3aba5a9e77a8c525
parent687bf7fefe14e374b2bc66f24d8596b08c84b919 (diff)
downloadlibtbm-msm-a88ff39d4297e9aeef7ae7e4c5db88a6dfa9a471.tar.gz
libtbm-msm-a88ff39d4297e9aeef7ae7e4c5db88a6dfa9a471.tar.bz2
libtbm-msm-a88ff39d4297e9aeef7ae7e4c5db88a6dfa9a471.zip
fix debug log parameter
Change-Id: Ide7a6a4e06b909ad3f230b6a900a9df4c86051e9
-rw-r--r--src/libhal-backend-tbm-msm/tbm_backend_msm.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/libhal-backend-tbm-msm/tbm_backend_msm.c b/src/libhal-backend-tbm-msm/tbm_backend_msm.c
index 90f69c0..f23cdb3 100644
--- a/src/libhal-backend-tbm-msm/tbm_backend_msm.c
+++ b/src/libhal-backend-tbm-msm/tbm_backend_msm.c
@@ -675,7 +675,7 @@ tbm_msm_bufmgr_alloc_bo(hal_tbm_bufmgr *bufmgr, unsigned int size,
pthread_mutex_init(&bo_data->mutex, NULL);
- TBM_BACKEND_DBG(" bo_data:%p, handle:%d, flags:%d(%d), size:%d",
+ TBM_BACKEND_DBG(" bo_data:%p, handle:%d, flags:%d, size:%d",
bo_data,
bo_data->handle,
bo_data->flags_tbm,
@@ -776,7 +776,7 @@ tbm_msm_bufmgr_alloc_bo_with_format(hal_tbm_bufmgr *bufmgr, int format, int bo_
pthread_mutex_init(&bo_data->mutex, NULL);
- TBM_BACKEND_DBG(" bo_data:%p, handle:%d, flags:%d(%d), size:%d",
+ TBM_BACKEND_DBG(" bo_data:%p, handle:%d, flags:%d, size:%d",
bo_data,
bo_data->handle,
bo_data->flags_tbm,
@@ -912,7 +912,7 @@ tbm_msm_bufmgr_import_fd(hal_tbm_bufmgr *bufmgr, hal_tbm_fd key, hal_tbm_error *
pthread_mutex_init(&bo_data->mutex, NULL);
- TBM_BACKEND_DBG(" bo_data:%p, handle:%d(%d), fd:%d, key_fd:%d, flags:%d, size:%d",
+ TBM_BACKEND_DBG(" bo_data:%p, handle:%d, fd:%d, key_fd:%d, flags:%d, size:%d",
bo_data,
bo_data->handle,
bo_data->buf_fd,
@@ -996,7 +996,7 @@ tbm_msm_bufmgr_import_key(hal_tbm_bufmgr *bufmgr, hal_tbm_key key, hal_tbm_error
if (error)
*error = HAL_TBM_ERROR_NONE;
- TBM_BACKEND_DBG(" bo_data:%p, handle:%d(%d), fd:%d, key_fd:%d, flags:%d, size:%d",
+ TBM_BACKEND_DBG(" bo_data:%p, handle:%d, fd:%d, key_fd:%d, flags:%d, size:%d",
bo_data,
bo_data->handle,
bo_data->buf_fd,
@@ -1031,7 +1031,7 @@ tbm_msm_bo_free(hal_tbm_bo *bo)
if (!bufmgr_data)
return;
- TBM_BACKEND_DBG(" bo_data:%p, handle:%d(%d), fd:%d, size:%d",
+ TBM_BACKEND_DBG(" bo_data:%p, handle:%d, fd:%d, size:%d",
bo_data,
bo_data->handle,
bo_data->buf_fd,
@@ -1119,7 +1119,7 @@ tbm_msm_bo_get_handle(hal_tbm_bo *bo, hal_tbm_bo_device_type device, hal_tbm_err
return (hal_tbm_bo_handle) NULL;
}
- TBM_BACKEND_DBG("bo_data:%p, handle:%d(%d), fd:%d, flags:%d, size:%d, %s",
+ TBM_BACKEND_DBG("bo_data:%p, handle:%d, fd:%d, flags:%d, size:%d, %s",
bo_data,
bo_data->handle,
bo_data->buf_fd,
@@ -1171,7 +1171,7 @@ tbm_msm_bo_map(hal_tbm_bo *bo, hal_tbm_bo_device_type device,
return (hal_tbm_bo_handle) NULL;
}
- TBM_BACKEND_DBG(" bo_data:%p, handle:%d(%d), fd:%d, %s, %s",
+ TBM_BACKEND_DBG(" bo_data:%p, handle:%d, fd:%d, %s, %s",
bo_data,
bo_data->handle,
bo_data->buf_fd,
@@ -1200,7 +1200,7 @@ tbm_msm_bo_unmap(hal_tbm_bo *bo)
if (!bo_data->handle)
return HAL_TBM_ERROR_INVALID_PARAMETER;
- TBM_BACKEND_DBG(" bo_data:%p, handle:%d(%d), fd:%d",
+ TBM_BACKEND_DBG(" bo_data:%p, handle:%d, fd:%d",
bo_data,
bo_data->handle,
bo_data->buf_fd);
@@ -1229,7 +1229,7 @@ tbm_msm_bo_export_fd(hal_tbm_bo *bo, hal_tbm_error *error)
return (hal_tbm_fd)-1;
}
- TBM_BACKEND_DBG(" bo_data:%p, handle:%d(%d), fd:%d, key_fd:%d, flags:%d, size:%d",
+ TBM_BACKEND_DBG(" bo_data:%p, handle:%d, fd:%d, key_fd:%d, flags:%d, size:%d",
bo_data,
bo_data->handle,
bo_data->buf_fd,
@@ -1264,7 +1264,7 @@ tbm_msm_bo_export_key(hal_tbm_bo *bo, hal_tbm_error *error)
}
}
- TBM_BACKEND_DBG(" bo_data:%p, handle:%d(%d), fd:%d, flags:%d, size:%d\n",
+ TBM_BACKEND_DBG(" bo_data:%p, handle:%d, fd:%d, flags:%d, size:%d\n",
bo_data,
bo_data->handle, bo_data->name,
bo_data->buf_fd,