Skip to content

Commit

Permalink
V4L/DVB: bttv: use unlocked ioctl
Browse files Browse the repository at this point in the history
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Mauro Carvalho Chehab committed Oct 21, 2010
1 parent c37db91 commit 8979e9d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/media/video/bt8xx/bttv-driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -3417,13 +3417,13 @@ bttv_mmap(struct file *file, struct vm_area_struct *vma)

static const struct v4l2_file_operations bttv_fops =
{
.owner = THIS_MODULE,
.open = bttv_open,
.release = bttv_release,
.ioctl = video_ioctl2,
.read = bttv_read,
.mmap = bttv_mmap,
.poll = bttv_poll,
.owner = THIS_MODULE,
.open = bttv_open,
.release = bttv_release,
.unlocked_ioctl = video_ioctl2,
.read = bttv_read,
.mmap = bttv_mmap,
.poll = bttv_poll,
};

static const struct v4l2_ioctl_ops bttv_ioctl_ops = {
Expand Down

0 comments on commit 8979e9d

Please sign in to comment.