Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 242129
b: refs/heads/master
c: 2e4784d
h: refs/heads/master
i:
  242127: 0190bff
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Mar 22, 2011
1 parent 5b24bf4 commit a22819f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 13099294973b14f07915d0342af2be8fa0af589b
refs/heads/master: 2e4784d0d3a6167e905a49d0dafa40b022fa1a55
17 changes: 4 additions & 13 deletions trunk/drivers/media/video/vivi.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <media/v4l2-device.h>
#include <media/v4l2-ioctl.h>
#include <media/v4l2-ctrls.h>
#include <media/v4l2-fh.h>
#include <media/v4l2-common.h>

#define VIVI_MODULE_NAME "vivi"
Expand Down Expand Up @@ -199,7 +200,6 @@ struct vivi_dev {
enum v4l2_field field;
unsigned int field_count;

unsigned int open_count;
u8 bars[9][3];
u8 line[MAX_WIDTH * 4];
};
Expand Down Expand Up @@ -996,15 +996,6 @@ static int vivi_s_ctrl(struct v4l2_ctrl *ctrl)
File operations for the device
------------------------------------------------------------------*/

static int vivi_open(struct file *file)
{
struct vivi_dev *dev = video_drvdata(file);

dprintk(dev, 1, "%s, %p\n", __func__, file);
dev->open_count++;
return 0;
}

static ssize_t
vivi_read(struct file *file, char __user *data, size_t count, loff_t *ppos)
{
Expand Down Expand Up @@ -1033,9 +1024,9 @@ static int vivi_close(struct file *file)
dprintk(dev, 1, "close called (dev=%s), file %p\n",
video_device_node_name(vdev), file);

if (--dev->open_count == 0)
if (v4l2_fh_is_singular_file(file))
vb2_queue_release(&dev->vb_vidq);
return 0;
return v4l2_fh_release(file);
}

static int vivi_mmap(struct file *file, struct vm_area_struct *vma)
Expand Down Expand Up @@ -1128,7 +1119,7 @@ static const struct v4l2_ctrl_config vivi_ctrl_string = {

static const struct v4l2_file_operations vivi_fops = {
.owner = THIS_MODULE,
.open = vivi_open,
.open = v4l2_fh_open,
.release = vivi_close,
.read = vivi_read,
.poll = vivi_poll,
Expand Down

0 comments on commit a22819f

Please sign in to comment.