浏览代码

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
Jia Ding 4 年之前
父节点
当前提交
223c1e5865
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      hif/src/pcie/if_pci.c

+ 2 - 1
hif/src/pcie/if_pci.c

@@ -3311,7 +3311,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;