Browse Source

msm: camera: isp: Fix data type issue for rdi lcr value

RDI LCR variable is defined as bool in place of uint32_t causing
corruption of value.
This commit fixes this issue.

CRs-Fixed: 3153295
Change-Id: Ibbdd6617b4f738a6e047938e51d5bd613749854b
Signed-off-by: Gaurav Jindal <[email protected]>
Gaurav Jindal 3 years ago
parent
commit
22f3cd5269

+ 1 - 1
drivers/cam_isp/isp_hw_mgr/isp_hw/ife_csid_hw/cam_ife_csid_hw_ver2.h

@@ -106,10 +106,10 @@ struct cam_ife_csid_ver2_top_cfg {
 	uint32_t      input_core_type;
 	uint32_t      dual_sync_core_sel;
 	uint32_t      master_slave_sel;
+	uint32_t      rdi_lcr;
 	bool          dual_en;
 	bool          offline_sfe_en;
 	bool          out_ife_en;
-	bool          rdi_lcr;
 };
 
 struct cam_ife_csid_ver2_evt_payload {