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

Commit 2e33a42b authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm:camera:isp: Make AB and IB equal for performance reasons"

parents 54ebb565 9de2d0e6
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1313,8 +1313,9 @@ static int msm_isp_update_stream_bandwidth(struct vfe_device *vfe_dev)
		(total_bandwidth * ISP_BUS_UTILIZATION_FACTOR / ISP_Q2));
	else
		rc = msm_isp_update_bandwidth(ISP_VFE0 + vfe_dev->pdev->id,
		(total_bandwidth + MSM_ISP_MIN_AB),  (total_bandwidth *
		ISP_BUS_UTILIZATION_FACTOR / ISP_Q2 + MSM_ISP_MIN_IB));
			(total_bandwidth + MSM_ISP_MIN_AB),
			(total_bandwidth + MSM_ISP_MIN_IB));

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