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

Commit a8d0981f authored by Gaurav Jindal's avatar Gaurav Jindal
Browse files

msm: camera: isp: Correct command type while dumping buffer



Command type is getting fetched from the source start address.
Fetch the command type from the current address which is
updated as the buffer is parsed and dumped.

Change-Id: Ibd08613777fda1d6b30f461306370ebd1a755583
Signed-off-by: default avatarGaurav Jindal <gjindal@codeaurora.org>
parent 916a5f56
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -820,7 +820,7 @@ void cam_cdm_util_dump_cmd_bufs_v2(
	}
	buf_now = dump_info->src_start;
	do {
		cmd = *dump_info->src_start;
		cmd = *buf_now;
		cmd = cmd >> CAM_CDM_COMMAND_OFFSET;

		switch (cmd) {