diff options
-rw-r--r-- | drivers/media/video/videodev.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/drivers/media/video/videodev.c b/drivers/media/video/videodev.c index f45c625a92f4..db4bee842745 100644 --- a/drivers/media/video/videodev.c +++ b/drivers/media/video/videodev.c | |||
@@ -438,6 +438,12 @@ static int __video_do_ioctl(struct inode *inode, struct file *file, | |||
438 | } | 438 | } |
439 | 439 | ||
440 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | 440 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
441 | /*********************************************************** | ||
442 | Handles calls to the obsoleted V4L1 API | ||
443 | Due to the nature of VIDIOCGMBUF, each driver that supports | ||
444 | V4L1 should implement its own handler for this ioctl. | ||
445 | ***********************************************************/ | ||
446 | |||
441 | /* --- streaming capture ------------------------------------- */ | 447 | /* --- streaming capture ------------------------------------- */ |
442 | if (cmd == VIDIOCGMBUF) { | 448 | if (cmd == VIDIOCGMBUF) { |
443 | struct video_mbuf *p=arg; | 449 | struct video_mbuf *p=arg; |
@@ -453,11 +459,17 @@ static int __video_do_ioctl(struct inode *inode, struct file *file, | |||
453 | (unsigned long)p->offsets); | 459 | (unsigned long)p->offsets); |
454 | return ret; | 460 | return ret; |
455 | } | 461 | } |
456 | #endif | ||
457 | 462 | ||
463 | /******************************************************** | ||
464 | All other V4L1 calls are handled by v4l1_compat module. | ||
465 | Those calls will be translated into V4L2 calls, and | ||
466 | __video_do_ioctl will be called again, with one or more | ||
467 | V4L2 ioctls. | ||
468 | ********************************************************/ | ||
458 | if (_IOC_TYPE(cmd)=='v') | 469 | if (_IOC_TYPE(cmd)=='v') |
459 | return v4l_compat_translate_ioctl(inode,file,cmd,arg, | 470 | return v4l_compat_translate_ioctl(inode,file,cmd,arg, |
460 | __video_do_ioctl); | 471 | __video_do_ioctl); |
472 | #endif | ||
461 | 473 | ||
462 | switch(cmd) { | 474 | switch(cmd) { |
463 | /* --- capabilities ------------------------------------------ */ | 475 | /* --- capabilities ------------------------------------------ */ |