diff options
| author | Christophe JAILLET <[email protected]> | 2024-05-20 09:55:54 +0000 |
|---|---|---|
| committer | Hans Verkuil <[email protected]> | 2024-05-28 06:00:14 +0000 |
| commit | fe61b2906bd046535f4ef7dfcd69562f531ccd38 (patch) | |
| tree | 15428f0b3f23dbdd8d7c7b323c023495312cb218 | |
| parent | media: Documentation: v4l: Fix ACTIVE route flag (diff) | |
| download | kernel-fe61b2906bd046535f4ef7dfcd69562f531ccd38.tar.gz kernel-fe61b2906bd046535f4ef7dfcd69562f531ccd38.zip | |
media: intel/ipu6: Fix some redundant resources freeing in ipu6_pci_remove()
pcim_iomap_regions() and pcim_enable_device() are used in the probe. So
the corresponding managed resources don't need to be freed explicitly in
the remove function.
Remove the incorrect pci_release_regions() and pci_disable_device() calls.
Fixes: 25fedc021985 ("media: intel/ipu6: add Intel IPU6 PCI device driver")
Signed-off-by: Christophe JAILLET <[email protected]>
Reviewed-by: Bingbu Cao <[email protected]>
Signed-off-by: Sakari Ailus <[email protected]>
Signed-off-by: Hans Verkuil <[email protected]>
| -rw-r--r-- | drivers/media/pci/intel/ipu6/ipu6.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/media/pci/intel/ipu6/ipu6.c b/drivers/media/pci/intel/ipu6/ipu6.c index d2bebd208461..f587f609259d 100644 --- a/drivers/media/pci/intel/ipu6/ipu6.c +++ b/drivers/media/pci/intel/ipu6/ipu6.c @@ -727,9 +727,6 @@ static void ipu6_pci_remove(struct pci_dev *pdev) pm_runtime_forbid(&pdev->dev); pm_runtime_get_noresume(&pdev->dev); - pci_release_regions(pdev); - pci_disable_device(pdev); - release_firmware(isp->cpd_fw); ipu6_mmu_cleanup(psys_mmu); |
