v4l2_ctrl_handler_free() and v4l2_device_unregister() are currently only called
when the last user closes the device and the device is already disconnected.
But that's wrong, we need to call these functions whenever the em28xx-v4l
extension is closed and we can already do this if the device is still opened
by some users.

Signed-off-by: Frank Schäfer <[email protected]>
---
 drivers/media/usb/em28xx/em28xx-video.c |    7 ++++---
 1 Datei geändert, 4 Zeilen hinzugefügt(+), 3 Zeilen entfernt(-)

diff --git a/drivers/media/usb/em28xx/em28xx-video.c 
b/drivers/media/usb/em28xx/em28xx-video.c
index 7535762..3ac8700 100644
--- a/drivers/media/usb/em28xx/em28xx-video.c
+++ b/drivers/media/usb/em28xx/em28xx-video.c
@@ -1923,8 +1923,11 @@ static int em28xx_v4l2_fini(struct em28xx *dev)
                dev->vdev = NULL;
        }
 
+       v4l2_ctrl_handler_free(&dev->ctrl_handler);
+       v4l2_device_unregister(&dev->v4l2_dev);
+
        if (dev->users)
-               em28xx_warn("Device is open ! Deregistration and memory 
deallocation are deferred on close.\n");
+               em28xx_warn("Device is open ! Memory deallocation is deferred 
on last close.\n");
 
        return 0;
 }
@@ -1951,8 +1954,6 @@ static int em28xx_v4l2_close(struct file *filp)
 
                if (dev->disconnected) {
                        em28xx_release_resources(dev);
-                       v4l2_ctrl_handler_free(&dev->ctrl_handler);
-                       v4l2_device_unregister(&dev->v4l2_dev);
                        kfree(dev->alt_max_pkt_size_isoc);
                        goto exit;
                }
-- 
1.7.10.4

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to