[PATCH -next] drm/bochs: Fix missing pci_disable_device() on error in bochs_pci_probe()

From: Yang Yingliang
Date: Wed Jul 14 2021 - 04:36:19 EST


Fix the missing pci_disable_device() before return
from bochs_pci_probe() in the error handling case.

Reported-by: Hulk Robot <hulkci@xxxxxxxxxx>
Signed-off-by: Yang Yingliang <yangyingliang@xxxxxxxxxx>
---
drivers/gpu/drm/tiny/bochs.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/tiny/bochs.c b/drivers/gpu/drm/tiny/bochs.c
index a2cfecfa8556..74832b9d3eae 100644
--- a/drivers/gpu/drm/tiny/bochs.c
+++ b/drivers/gpu/drm/tiny/bochs.c
@@ -666,6 +666,7 @@ static int bochs_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent
return ret;

err_free_dev:
+ pci_disable_device(pdev);
drm_dev_put(dev);
return ret;
}
--
2.25.1