Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3365e366 authored by Arun KS's avatar Arun KS
Browse files

msm: ais: Fix various formatting errors



This patch fixes %x to %llx to match the data type.

Change-Id: I9a636236000601c163d2b709783b6ac3367f44ee
Signed-off-by: default avatarArun KS <arunks@codeaurora.org>
parent 65119ded
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -264,7 +264,7 @@ static int32_t cam_sensor_i2c_pkt_parse(struct cam_sensor_ctrl_t *s_ctrl,

rel_pkt_buf:
	if (cam_mem_put_cpu_buf(config.packet_handle))
		CAM_WARN(CAM_SENSOR, "Failed in put the buffer: 0x%x",
		CAM_WARN(CAM_SENSOR, "Failed in put the buffer: 0x%llx",
			config.packet_handle);

	return rc;
@@ -597,7 +597,7 @@ int32_t cam_handle_mem_ptr(uint64_t handle, struct cam_sensor_ctrl_t *s_ctrl)
	}

	if (cam_mem_put_cpu_buf(handle))
		CAM_WARN(CAM_SENSOR, "Failed to put the command Buffer: 0x%x",
		CAM_WARN(CAM_SENSOR, "Failed to put the command Buffer: 0x%llx",
			handle);

	return rc;
@@ -608,7 +608,7 @@ int32_t cam_handle_mem_ptr(uint64_t handle, struct cam_sensor_ctrl_t *s_ctrl)
			cmd_desc[i].mem_handle);
rel_pkt_buf:
	if (cam_mem_put_cpu_buf(handle))
		CAM_WARN(CAM_SENSOR, "Failed to put the command Buffer: 0x%x",
		CAM_WARN(CAM_SENSOR, "Failed to put the command Buffer: 0x%llx",
			handle);

	return rc;