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

Commit 36fd19ae authored by Jeyaprakash Soundrapandian's avatar Jeyaprakash Soundrapandian Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: camera isp: Correct UBWC bw limit" into dev/msm-4.14-camx

parents 5c5b688f 849432e5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2644,10 +2644,10 @@ static int cam_vfe_bus_update_ubwc_3_regs(

	switch (wm_data->format) {
	case CAM_FORMAT_UBWC_TP10:
		ubwc_bw_limit = 0x8 | BIT(0);
		ubwc_bw_limit = (0x8 << 1) | BIT(0);
		break;
	case CAM_FORMAT_UBWC_NV12_4R:
		ubwc_bw_limit = 0xB | BIT(0);
		ubwc_bw_limit = (0xB << 1) | BIT(0);
		break;
	default:
		ubwc_bw_limit = 0;