Commit b596ad6f authored by Oded Gabbay's avatar Oded Gabbay
Browse files

habanalabs: initialize variable explicitly



Fix warning of
"warning: ‘old_base’ may be used uninitialized in this function"

Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent 6d24b4d1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ static int hl_access_sram_dram_region(struct hl_device *hdev, u64 addr, u64 *val
	enum debugfs_access_type acc_type, enum pci_region region_type)
{
	struct pci_mem_region *region = &hdev->pci_mem_region[region_type];
	u64 old_base, rc;
	u64 old_base = 0, rc;

	if (region_type == PCI_REGION_DRAM) {
		old_base = hl_set_dram_bar(hdev, addr);