Commit 3002f467 authored by Christophe JAILLET's avatar Christophe JAILLET Committed by Oded Gabbay

habanalabs: Fix an error handling path in 'hl_pci_probe()'

If an error occurs after a 'pci_enable_pcie_error_reporting()' call, it
must be undone by a corresponding 'pci_disable_pcie_error_reporting()'
call, as already done in the remove function.

Fixes: 2e5eda46 ("habanalabs: PCIe Advanced Error Reporting support")
Signed-off-by: default avatarChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: default avatarOded Gabbay <ogabbay@kernel.org>
Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent c9d2f5cf
...@@ -468,6 +468,7 @@ static int hl_pci_probe(struct pci_dev *pdev, ...@@ -468,6 +468,7 @@ static int hl_pci_probe(struct pci_dev *pdev,
return 0; return 0;
disable_device: disable_device:
pci_disable_pcie_error_reporting(pdev);
pci_set_drvdata(pdev, NULL); pci_set_drvdata(pdev, NULL);
destroy_hdev(hdev); destroy_hdev(hdev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment