media: ipu3-cio2: Fix PM runtime usage_count in driver unbind
authorSakari Ailus <sakari.ailus@linux.intel.com>
Wed, 21 Dec 2022 08:30:11 +0000 (09:30 +0100)
committerMauro Carvalho Chehab <mchehab@kernel.org>
Mon, 6 Feb 2023 07:50:57 +0000 (08:50 +0100)
Get the PM runtime usage_count and forbid PM runtime at driver unbind. The
opposite is being done in probe() already.

Fixes: commit c2a6a07afe4a ("media: intel-ipu3: cio2: add new MIPI-CSI2 driver")
Cc: stable@vger.kernel.org # for >= 4.16
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Reviewed-by: Bingbu Cao <bingbu.cao@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
drivers/media/pci/intel/ipu3/ipu3-cio2-main.c

index 390bd5e..3b76a9d 100644 (file)
@@ -1843,6 +1843,9 @@ static void cio2_pci_remove(struct pci_dev *pci_dev)
        v4l2_device_unregister(&cio2->v4l2_dev);
        media_device_cleanup(&cio2->media_dev);
        mutex_destroy(&cio2->lock);
+
+       pm_runtime_forbid(&pci_dev->dev);
+       pm_runtime_get_noresume(&pci_dev->dev);
 }
 
 static int __maybe_unused cio2_runtime_suspend(struct device *dev)