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

Commit a287e858 authored by Camera Software Integration's avatar Camera Software Integration Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: camera: isp: Correct the bitmask for packet header" into camera-kernel.lnx.1.0

parents f3cda1d2 d0284604
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -4714,7 +4714,7 @@ irqreturn_t cam_ife_csid_irq(int irq_num, void *data)
		CAM_INFO_RATE_LIMIT(CAM_ISP,
			"CSID:%d short pkt VC :%d DT:%d LC:%d",
			csid_hw->hw_intf->hw_idx,
			(val >> 22), ((val >> 16) & 0x1F), (val & 0xFFFF));
			(val >> 22), ((val >> 16) & 0x3F), (val & 0xFFFF));
		val = cam_io_r_mb(soc_info->reg_map[0].mem_base +
			csi2_reg->csid_csi2_rx_captured_short_pkt_1_addr);
		CAM_INFO_RATE_LIMIT(CAM_ISP, "CSID:%d short packet ECC :%d",
@@ -4731,7 +4731,7 @@ irqreturn_t cam_ife_csid_irq(int irq_num, void *data)
		CAM_INFO_RATE_LIMIT(CAM_ISP,
			"CSID:%d cphy packet VC :%d DT:%d WC:%d",
			csid_hw->hw_intf->hw_idx,
			(val >> 22), ((val >> 16) & 0x1F), (val & 0xFFFF));
			(val >> 22), ((val >> 16) & 0x3F), (val & 0xFFFF));
	}

	/*read the IPP errors */