aboutsummaryrefslogtreecommitdiff
path: root/drivers/media/video/et61x251
diff options
context:
space:
mode:
authorLuca Risolia <luca.risolia@studio.unibo.it>2006-11-21 08:13:59 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-11-26 08:52:37 -0200
commit5718bbd2d92b9c2aa2f5700e4d3ed9d72f72f47e (patch)
tree1f887f31677c5bd370b60d343fad9b246324ba01 /drivers/media/video/et61x251
parenta5bbc7d94cf1dcb2100eeaf68791a401ad7ce54d (diff)
V4L/DVB (4865): Fix: Slot 0 not NULL on disconnecting SN9C10x PC Camera
The patch fix bug 5748. Signed-off-by: Luca Risolia <luca.risolia@studio.unibo.it> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/et61x251')
-rw-r--r--drivers/media/video/et61x251/et61x251_core.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/media/video/et61x251/et61x251_core.c b/drivers/media/video/et61x251/et61x251_core.c
index f786ab11d2c..86e353b26b5 100644
--- a/drivers/media/video/et61x251/et61x251_core.c
+++ b/drivers/media/video/et61x251/et61x251_core.c
@@ -1182,8 +1182,6 @@ static void et61x251_release_resources(struct et61x251_device* cam)
video_set_drvdata(cam->v4ldev, NULL);
video_unregister_device(cam->v4ldev);
- usb_put_dev(cam->usbdev);
-
mutex_unlock(&et61x251_sysfs_lock);
kfree(cam->control_buffer);
@@ -1275,6 +1273,7 @@ static int et61x251_release(struct inode* inode, struct file* filp)
if (cam->state & DEV_DISCONNECTED) {
et61x251_release_resources(cam);
+ usb_put_dev(cam->usbdev);
mutex_unlock(&cam->dev_mutex);
kfree(cam);
return 0;