Merge "msm: camera: isp: Correct the condition for violation print loop" into camera-kernel.lnx.5.0

This commit is contained in:
Camera Software Integration
2021-08-30 17:45:55 -07:00
committed by Gerrit - the friendly Code Review server

View File

@@ -425,7 +425,7 @@ static int cam_vfe_top_ver4_print_overflow_debug_info(
i = 0; i = 0;
tmp = violation_status; tmp = violation_status;
while (violation_status) { while (tmp) {
if (tmp & 0x1) if (tmp & 0x1)
CAM_ERR_RATE_LIMIT(CAM_ISP, "VFE[%d] Bus Violation %s", CAM_ERR_RATE_LIMIT(CAM_ISP, "VFE[%d] Bus Violation %s",
soc_info->index, common_data->hw_info->wr_client_desc[i].desc); soc_info->index, common_data->hw_info->wr_client_desc[i].desc);