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 <quic_gjindal@quicinc.com>
Tento commit je obsažen v:
Gaurav Jindal
2022-03-17 12:32:38 +05:30
odevzdal Camera Software Integration
rodič b31c24849c
revize 22f3cd5269

Zobrazit soubor

@@ -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 {