habanalabs: Add check for pci_enable_device
[ Upstream commit 9c27896ac1bb83ea5c461ce6f7089d02102a2b21 ] As the potential failure of the pci_enable_device(), it should be better to check the return value and return error if fails. Fixes: 70b2f993ea4a ("habanalabs: create common folder") Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn> Reviewed-by: Oded Gabbay <ogabbay@kernel.org> Signed-off-by: Oded Gabbay <ogabbay@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
82546d91d5
commit
8a842f88d0
@ -856,6 +856,8 @@ static ssize_t hl_set_power_state(struct file *f, const char __user *buf,
|
||||
pci_set_power_state(hdev->pdev, PCI_D0);
|
||||
pci_restore_state(hdev->pdev);
|
||||
rc = pci_enable_device(hdev->pdev);
|
||||
if (rc < 0)
|
||||
return rc;
|
||||
} else if (value == 2) {
|
||||
pci_save_state(hdev->pdev);
|
||||
pci_disable_device(hdev->pdev);
|
||||
|
Loading…
x
Reference in New Issue
Block a user