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

Commit 0e3695c9 authored by Senthil Kumar Rajagopal's avatar Senthil Kumar Rajagopal Committed by Gerrit - the friendly Code Review server
Browse files

msm: isp: Fix for subdev corruption.



vfe_dev is wrongly passed instead of vfe_base.

Change-Id: Ia1873e34dabd417e3203ccba87a670cf7b07cb50
Signed-off-by: default avatarSenthil Kumar Rajagopal <skrajago@codeaurora.org>
parent 4c47f344
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2238,8 +2238,8 @@ static int msm_isp_request_frame(struct vfe_device *vfe_dev,
		if (rc < 0)
			pr_err("%s:%d failed: return_empty_buffer src %d\n",
				__func__, __LINE__, frame_src);
		vfe_dev->hw_info->vfe_ops.axi_ops.cfg_framedrop(vfe_dev,
			stream_info, 0, 0);
		vfe_dev->hw_info->vfe_ops.axi_ops.cfg_framedrop(
			vfe_dev->vfe_base, stream_info, 0, 0);
		stream_info->framedrop_pattern = 0;
		stream_info->framedrop_period = 0;
		return 0;