diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2018-10-10 04:04:18 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2018-11-06 07:11:59 -0500 |
commit | 4e26f692e2e2aa4d7d6ddb3c4d3dec17f45d6495 (patch) | |
tree | c9dbedd97968d032c387870c6eaf4fd055f341c6 | |
parent | 32388d6ef7cffc7d8291b67f8dfa26acd45217fd (diff) | |
download | linux-stable-4e26f692e2e2aa4d7d6ddb3c4d3dec17f45d6495.tar.gz linux-stable-4e26f692e2e2aa4d7d6ddb3c4d3dec17f45d6495.tar.bz2 linux-stable-4e26f692e2e2aa4d7d6ddb3c4d3dec17f45d6495.zip |
media: ipu3-cio2: Use cio2_queues_exit
The ipu3-cio2 driver has a function to tear down video devices as well as
the associated video buffer queues. Use it.
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Tested-by: Bingbu Cao <bingbu.cao@intel.com>
Reviewed-by: Bingbu Cao <bingbu.cao@intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
-rw-r--r-- | drivers/media/pci/intel/ipu3/ipu3-cio2.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/media/pci/intel/ipu3/ipu3-cio2.c b/drivers/media/pci/intel/ipu3/ipu3-cio2.c index 723022ef3662..447baaebca44 100644 --- a/drivers/media/pci/intel/ipu3/ipu3-cio2.c +++ b/drivers/media/pci/intel/ipu3/ipu3-cio2.c @@ -1844,12 +1844,10 @@ fail_mutex_destroy: static void cio2_pci_remove(struct pci_dev *pci_dev) { struct cio2_device *cio2 = pci_get_drvdata(pci_dev); - unsigned int i; media_device_unregister(&cio2->media_dev); cio2_notifier_exit(cio2); - for (i = 0; i < CIO2_QUEUES; i++) - cio2_queue_exit(cio2, &cio2->queue[i]); + cio2_queues_exit(cio2); cio2_fbpt_exit_dummy(cio2); v4l2_device_unregister(&cio2->v4l2_dev); media_device_cleanup(&cio2->media_dev); |