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

Commit dde6beef authored by Jia Ding's avatar Jia Ding Committed by snandini
Browse files

qcacmn: Fix uninitialized scalar variable

Fix below static code analysis case.

uninit_use_in_call: Using uninitialized value target_type
when calling hif_get_device_type.

Change-Id: I0d072dd7dd92addeb986d088a7ee85ff13e15d16
CRs-Fixed: 2748473
parent ea19aec0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3912,7 +3912,8 @@ QDF_STATUS hif_pci_enable_bus(struct hif_softc *ol_sc,
			  enum hif_enable_type type)
{
	int ret = 0;
	uint32_t hif_type, target_type;
	uint32_t hif_type;
	uint32_t target_type = TARGET_TYPE_UNKNOWN;
	struct hif_pci_softc *sc = HIF_GET_PCI_SOFTC(ol_sc);
	struct hif_opaque_softc *hif_hdl = GET_HIF_OPAQUE_HDL(ol_sc);
	uint16_t revision_id = 0;