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

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

Merge "msm: camera: csiphy: Correct delay when configure device" into dev/msm-4.14-camx

parents 68cbea04 ea4e04fe
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -352,8 +352,10 @@ int32_t cam_csiphy_config_dev(struct csiphy_device *csiphy_dev)
				CAM_DBG(CAM_CSIPHY, "Do Nothing");
			break;
			}
			if (reg_array[lane_pos][i].delay > 0) {
				usleep_range(reg_array[lane_pos][i].delay*1000,
				reg_array[lane_pos][i].delay*1000 + 1000);
					reg_array[lane_pos][i].delay*1000 + 10);
			}
		}
		lane_mask >>= 1;
		lane_pos++;