habanalabs: check if asic secured with asic type
authorOhad Sharabi <osharabi@habana.ai>
Tue, 11 May 2021 13:02:41 +0000 (16:02 +0300)
committerOded Gabbay <ogabbay@kernel.org>
Fri, 18 Jun 2021 12:23:40 +0000 (15:23 +0300)
Fix issue in which the input to the function is_asic_secured was device
PCI_IDS number instead of the asic_type enumeration.

Signed-off-by: Ohad Sharabi <osharabi@habana.ai>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
drivers/misc/habanalabs/common/habanalabs_drv.c

index dc92401..df1e91f 100644 (file)
@@ -309,7 +309,7 @@ int create_hdev(struct hl_device **dev, struct pci_dev *pdev,
 
        if (pdev)
                hdev->asic_prop.fw_security_disabled =
-                               !is_asic_secured(pdev->device);
+                               !is_asic_secured(hdev->asic_type);
        else
                hdev->asic_prop.fw_security_disabled = true;