msm: camera: common: Update logging for better debugging
Fix incorrect logging format strings. Update log string to better indicate about the parameters. CRs-Fixed: 3128094 Change-Id: I265d9233769f152ae0cbdf1f13b4499b03cf1593 Signed-off-by: Pavan Kumar Chilamkurthi <quic_pchilamk@quicinc.com>
Esse commit está contido em:

commit de
Camera Software Integration

pai
ad04683cb1
commit
cd2c6d0ab8
@@ -1,6 +1,7 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
/*
|
||||
* Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
|
||||
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||
*/
|
||||
|
||||
#include <linux/module.h>
|
||||
@@ -334,8 +335,8 @@ int cam_mem_get_io_buf(int32_t buf_handle, int32_t mmu_handle,
|
||||
*flags = tbl.bufq[idx].flags;
|
||||
|
||||
CAM_DBG(CAM_MEM,
|
||||
"handle:0x%x fd:%d i_ino:%lu iova_ptr:0x%llx len_ptr:%llu",
|
||||
mmu_handle, tbl.bufq[idx].fd, tbl.bufq[idx].i_ino, iova_ptr, *len_ptr);
|
||||
"handle:0x%x fd:%d i_ino:%lu iova_ptr:0x%lx len_ptr:%lu",
|
||||
mmu_handle, tbl.bufq[idx].fd, tbl.bufq[idx].i_ino, *iova_ptr, *len_ptr);
|
||||
handle_mismatch:
|
||||
mutex_unlock(&tbl.bufq[idx].q_lock);
|
||||
return rc;
|
||||
|
Referência em uma nova issue
Block a user