diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2006-06-18 15:54:20 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2006-06-25 01:05:23 -0400 |
commit | f81cf7533b4b8411a0d2fa943adcede340dfdab6 (patch) | |
tree | 0274c8adcd34b8a074dfcf3cffceb2267cafa85b /drivers/media/video/cx88/cx88-blackbird.c | |
parent | 86b79d662453b0f0107d03cc939dd737d6076436 (diff) |
V4L/DVB (4198): Avoid newer usages of obsoleted experimental MPEGCOMP API
Put old MPEGCOMP API under #if __KERNEL__ and issue warnings when used.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx88/cx88-blackbird.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-blackbird.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/cx88/cx88-blackbird.c b/drivers/media/video/cx88/cx88-blackbird.c index 9fa1ddbe3fd8..6e945de1f20a 100644 --- a/drivers/media/video/cx88/cx88-blackbird.c +++ b/drivers/media/video/cx88/cx88-blackbird.c | |||
@@ -805,10 +805,14 @@ static int mpeg_do_ioctl(struct inode *inode, struct file *file, | |||
805 | { | 805 | { |
806 | struct v4l2_mpeg_compression *f = arg; | 806 | struct v4l2_mpeg_compression *f = arg; |
807 | 807 | ||
808 | printk(KERN_WARNING "VIDIOC_G_MPEGCOMP is obsolete. " | ||
809 | "Replace with VIDIOC_G_EXT_CTRLS!"); | ||
808 | memcpy(f,&default_mpeg_params,sizeof(*f)); | 810 | memcpy(f,&default_mpeg_params,sizeof(*f)); |
809 | return 0; | 811 | return 0; |
810 | } | 812 | } |
811 | case VIDIOC_S_MPEGCOMP: | 813 | case VIDIOC_S_MPEGCOMP: |
814 | printk(KERN_WARNING "VIDIOC_S_MPEGCOMP is obsolete. " | ||
815 | "Replace with VIDIOC_S_EXT_CTRLS!"); | ||
812 | return 0; | 816 | return 0; |
813 | case VIDIOC_G_EXT_CTRLS: | 817 | case VIDIOC_G_EXT_CTRLS: |
814 | { | 818 | { |