diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2022-12-21 09:30:11 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@kernel.org> | 2023-02-06 08:50:57 +0100 |
commit | 909d3096ac99fa2289f9b8945a3eab2269947a0a (patch) | |
tree | 197eb2643b68176f55217a1a8eecb7b811657f72 /drivers/media/pci/intel/ipu3/ipu3-cio2-main.c | |
parent | media: i2c: ov5670: Handle RO controls in set_ctrl (diff) | |
download | linux-909d3096ac99fa2289f9b8945a3eab2269947a0a.tar.xz linux-909d3096ac99fa2289f9b8945a3eab2269947a0a.zip |
media: ipu3-cio2: Fix PM runtime usage_count in driver unbind
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>
Diffstat (limited to '')
-rw-r--r-- | drivers/media/pci/intel/ipu3/ipu3-cio2-main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c b/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c index 390bd5ea3472..3b76a9d0383a 100644 --- a/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c +++ b/drivers/media/pci/intel/ipu3/ipu3-cio2-main.c @@ -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) |