From fabb792d38f0cfebc422fcb20279b01145d07777 Mon Sep 17 00:00:00 2001 From: Markus Rechberger Date: Mon, 17 Oct 2005 22:59:21 +0000 Subject: * ../linux/drivers/usb/media/em2820-video.c: (em2820_v4l2_close): - cleanup dev assignment Signed-off-by: Markus Rechberger --- linux/drivers/media/video/em28xx/em28xx-video.c | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'linux/drivers/media/video/em28xx') diff --git a/linux/drivers/media/video/em28xx/em28xx-video.c b/linux/drivers/media/video/em28xx/em28xx-video.c index 78d3dbfca..01fdd456e 100644 --- a/linux/drivers/media/video/em28xx/em28xx-video.c +++ b/linux/drivers/media/video/em28xx/em28xx-video.c @@ -417,20 +417,10 @@ static void em2820_release_resources(struct em2820 *dev) * em2820_v4l2_close() * stops streaming and deallocates all resources allocated by the v4l2 calls and ioctls */ -static int em2820_v4l2_close(struct inode *inode, struct file *file) +static int em2820_v4l2_close(struct inode *inode, struct file *filp) { int errCode; - int minor = iminor(inode); - struct em2820 *h,*dev = NULL; - struct list_head *list; - - list_for_each(list,&em2820_devlist) { - h = list_entry(list, struct em2820, devlist); - if (h->vdev->minor == minor) { - dev = h; - } - } - + struct em2820 *dev=filp->private_data; em2820_videodbg("users=%d", dev->users); -- cgit v1.2.3