diff options
author | Michael Krufky <mkrufky@kernellabs.com> | 2009-07-19 17:19:18 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@kernellabs.com> | 2009-07-19 17:19:18 -0400 |
commit | 337e432b2e75655ab7d267af800bd4853f8cf3c9 (patch) | |
tree | 4c069a96b6aee144174991122b6f11839bfd5312 /linux/drivers | |
parent | 20d8713a89d5f49511495e944294806642ec6a13 (diff) | |
download | mediapointer-dvb-s2-337e432b2e75655ab7d267af800bd4853f8cf3c9.tar.gz mediapointer-dvb-s2-337e432b2e75655ab7d267af800bd4853f8cf3c9.tar.bz2 |
cx23885-417: fix broken IOCTL handling
From: Michael Krufky <mkrufky@kernellabs.com>
IOCTLS will never get handled if we dont connect
video_ioctl2 to mpeg_fops.ioctl
Priority: high
Signed-off-by: Michael Krufky <mkrufky@kernellabs.com>
Diffstat (limited to 'linux/drivers')
-rw-r--r-- | linux/drivers/media/video/cx23885/cx23885-417.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx23885/cx23885-417.c b/linux/drivers/media/video/cx23885/cx23885-417.c index 9974d9a78..9c5233906 100644 --- a/linux/drivers/media/video/cx23885/cx23885-417.c +++ b/linux/drivers/media/video/cx23885/cx23885-417.c @@ -1683,6 +1683,7 @@ static struct v4l2_file_operations mpeg_fops = { .read = mpeg_read, .poll = mpeg_poll, .mmap = mpeg_mmap, + .ioctl = video_ioctl2, }; static const struct v4l2_ioctl_ops mpeg_ioctl_ops = { |