소스 검색

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

Camera Software Integration 3 년 전
부모
커밋
110420ce29
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_top_ver4.c

+ 1 - 1
drivers/cam_isp/isp_hw_mgr/isp_hw/vfe_hw/vfe_top/cam_vfe_top_ver4.c

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