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

Commit b82e09ff authored by Harsh Shah's avatar Harsh Shah Committed by Matt Wagantall
Browse files

msm: camera: isp: Make AB and IB equal for 8992



As per request from dcvs and ddr team, make AB=IB for 8992.

Change-Id: I7ed8cda461bd295602acab20e8a69798da68aaeb
Signed-off-by: default avatarHarsh Shah <harshs@codeaurora.org>
parent 24d057de
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1379,8 +1379,9 @@ static int msm_isp_update_stream_bandwidth(struct vfe_device *vfe_dev)
	}
	total_bandwidth = total_pix_bandwidth + total_rdi_bandwidth;
	rc = msm_isp_update_bandwidth(ISP_VFE0 + vfe_dev->pdev->id,
		total_bandwidth,  total_bandwidth *
		ISP_BUS_UTILIZATION_FACTOR / ISP_Q2);
		(total_bandwidth + MSM_ISP_MIN_AB),
		(total_bandwidth + MSM_ISP_MIN_IB));

	if (rc < 0)
		pr_err("%s: update failed\n", __func__);