Skip to content

Commit

Permalink
V4L/DVB: pms: remove unnecessary exclusive open/close
Browse files Browse the repository at this point in the history
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed May 18, 2010
1 parent b3e212d commit 4674226
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions drivers/media/video/pms.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ struct pms {
int depth;
int input;
s32 brightness, saturation, hue, contrast;
unsigned long in_use;
struct mutex lock;
int i2c_count;
struct i2c_info i2cinfo[64];
Expand Down Expand Up @@ -931,25 +930,8 @@ static ssize_t pms_read(struct file *file, char __user *buf,
return len;
}

static int pms_exclusive_open(struct file *file)
{
struct pms *dev = video_drvdata(file);

return test_and_set_bit(0, &dev->in_use) ? -EBUSY : 0;
}

static int pms_exclusive_release(struct file *file)
{
struct pms *dev = video_drvdata(file);

clear_bit(0, &dev->in_use);
return 0;
}

static const struct v4l2_file_operations pms_fops = {
.owner = THIS_MODULE,
.open = pms_exclusive_open,
.release = pms_exclusive_release,
.ioctl = video_ioctl2,
.read = pms_read,
};
Expand Down

0 comments on commit 4674226

Please sign in to comment.