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

Commit 8c548b9e authored by Arun KS's avatar Arun KS
Browse files

msm: ais: Fix CAM_WARN formatting error



This patch changes '%x' to '%llx' to match their data types.

Change-Id: Ib621795f8ea0ecbf546e9f41ff716cd981a47b09
Signed-off-by: default avatarArun KS <arunks@codeaurora.org>
parent b62aaff3
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -682,7 +682,7 @@ int32_t cam_actuator_i2c_pkt_parse(struct cam_actuator_ctrl_t *a_ctrl,
	}

	if (cam_mem_put_cpu_buf(config.packet_handle))
		CAM_WARN(CAM_ACTUATOR, "Fail to put cmd buffer: 0x%x",
		CAM_WARN(CAM_ACTUATOR, "Fail to put cmd buffer: 0x%llx",
			config.packet_handle);

	return rc;
@@ -693,7 +693,7 @@ int32_t cam_actuator_i2c_pkt_parse(struct cam_actuator_ctrl_t *a_ctrl,
			cmd_desc[i].mem_handle);
rel_pkt_buf:
	if (cam_mem_put_cpu_buf(config.packet_handle))
		CAM_WARN(CAM_ACTUATOR, "Fail to put cmd buffer: 0x%x",
		CAM_WARN(CAM_ACTUATOR, "Fail to put cmd buffer: 0x%llx",
			config.packet_handle);

	return rc;