diff options
| author | Hans Verkuil <hverkuil@xs4all.nl> | 2010-12-24 08:33:19 -0500 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-29 05:17:07 -0500 |
| commit | 08af245de0cf6ab5f4ed008ee2bb99273774fce0 (patch) | |
| tree | d07a9b38eb4b9442ef0e935063a5f7f40248e19e /include/media | |
| parent | b69a219e0e97441dbeb0262cf85468b61a161399 (diff) | |
[media] V4L: remove V4L1 compatibility mode
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'include/media')
| -rw-r--r-- | include/media/v4l2-ioctl.h | 22 | ||||
| -rw-r--r-- | include/media/videobuf-core.h | 8 |
2 files changed, 3 insertions, 27 deletions
diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h index 06daa6e8e051..67df37542c68 100644 --- a/include/media/v4l2-ioctl.h +++ b/include/media/v4l2-ioctl.h | |||
| @@ -14,12 +14,7 @@ | |||
| 14 | #include <linux/device.h> | 14 | #include <linux/device.h> |
| 15 | #include <linux/mutex.h> | 15 | #include <linux/mutex.h> |
| 16 | #include <linux/compiler.h> /* need __user */ | 16 | #include <linux/compiler.h> /* need __user */ |
| 17 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
| 18 | #define __MIN_V4L1 | ||
| 19 | #include <linux/videodev.h> | ||
| 20 | #else | ||
| 21 | #include <linux/videodev2.h> | 17 | #include <linux/videodev2.h> |
| 22 | #endif | ||
| 23 | 18 | ||
| 24 | struct v4l2_fh; | 19 | struct v4l2_fh; |
| 25 | 20 | ||
| @@ -113,10 +108,6 @@ struct v4l2_ioctl_ops { | |||
| 113 | 108 | ||
| 114 | 109 | ||
| 115 | int (*vidioc_overlay) (struct file *file, void *fh, unsigned int i); | 110 | int (*vidioc_overlay) (struct file *file, void *fh, unsigned int i); |
| 116 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
| 117 | /* buffer type is struct vidio_mbuf * */ | ||
| 118 | int (*vidiocgmbuf) (struct file *file, void *fh, struct video_mbuf *p); | ||
| 119 | #endif | ||
| 120 | int (*vidioc_g_fbuf) (struct file *file, void *fh, | 111 | int (*vidioc_g_fbuf) (struct file *file, void *fh, |
| 121 | struct v4l2_framebuffer *a); | 112 | struct v4l2_framebuffer *a); |
| 122 | int (*vidioc_s_fbuf) (struct file *file, void *fh, | 113 | int (*vidioc_s_fbuf) (struct file *file, void *fh, |
| @@ -300,22 +291,15 @@ extern void v4l_printk_ioctl(unsigned int cmd); | |||
| 300 | extern const char *v4l2_field_names[]; | 291 | extern const char *v4l2_field_names[]; |
| 301 | extern const char *v4l2_type_names[]; | 292 | extern const char *v4l2_type_names[]; |
| 302 | 293 | ||
| 303 | /* Compatibility layer interface -- v4l1-compat module */ | ||
| 304 | typedef long (*v4l2_kioctl)(struct file *file, | ||
| 305 | unsigned int cmd, void *arg); | ||
| 306 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
| 307 | long v4l_compat_translate_ioctl(struct file *file, | ||
| 308 | int cmd, void *arg, v4l2_kioctl driver_ioctl); | ||
| 309 | #else | ||
| 310 | #define v4l_compat_translate_ioctl(file, cmd, arg, ioctl) (-EINVAL) | ||
| 311 | #endif | ||
| 312 | |||
| 313 | #ifdef CONFIG_COMPAT | 294 | #ifdef CONFIG_COMPAT |
| 314 | /* 32 Bits compatibility layer for 64 bits processors */ | 295 | /* 32 Bits compatibility layer for 64 bits processors */ |
| 315 | extern long v4l2_compat_ioctl32(struct file *file, unsigned int cmd, | 296 | extern long v4l2_compat_ioctl32(struct file *file, unsigned int cmd, |
| 316 | unsigned long arg); | 297 | unsigned long arg); |
| 317 | #endif | 298 | #endif |
| 318 | 299 | ||
| 300 | typedef long (*v4l2_kioctl)(struct file *file, | ||
| 301 | unsigned int cmd, void *arg); | ||
| 302 | |||
| 319 | /* Include support for obsoleted stuff */ | 303 | /* Include support for obsoleted stuff */ |
| 320 | extern long video_usercopy(struct file *file, unsigned int cmd, | 304 | extern long video_usercopy(struct file *file, unsigned int cmd, |
| 321 | unsigned long arg, v4l2_kioctl func); | 305 | unsigned long arg, v4l2_kioctl func); |
diff --git a/include/media/videobuf-core.h b/include/media/videobuf-core.h index 1d3835fc26be..90ed895e217d 100644 --- a/include/media/videobuf-core.h +++ b/include/media/videobuf-core.h | |||
| @@ -17,10 +17,6 @@ | |||
| 17 | #define _VIDEOBUF_CORE_H | 17 | #define _VIDEOBUF_CORE_H |
| 18 | 18 | ||
| 19 | #include <linux/poll.h> | 19 | #include <linux/poll.h> |
| 20 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
| 21 | #define __MIN_V4L1 | ||
| 22 | #include <linux/videodev.h> | ||
| 23 | #endif | ||
| 24 | #include <linux/videodev2.h> | 20 | #include <linux/videodev2.h> |
| 25 | 21 | ||
| 26 | #define UNSET (-1U) | 22 | #define UNSET (-1U) |
| @@ -212,10 +208,6 @@ int videobuf_qbuf(struct videobuf_queue *q, | |||
| 212 | struct v4l2_buffer *b); | 208 | struct v4l2_buffer *b); |
| 213 | int videobuf_dqbuf(struct videobuf_queue *q, | 209 | int videobuf_dqbuf(struct videobuf_queue *q, |
| 214 | struct v4l2_buffer *b, int nonblocking); | 210 | struct v4l2_buffer *b, int nonblocking); |
| 215 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
| 216 | int videobuf_cgmbuf(struct videobuf_queue *q, | ||
| 217 | struct video_mbuf *mbuf, int count); | ||
| 218 | #endif | ||
| 219 | int videobuf_streamon(struct videobuf_queue *q); | 211 | int videobuf_streamon(struct videobuf_queue *q); |
| 220 | int videobuf_streamoff(struct videobuf_queue *q); | 212 | int videobuf_streamoff(struct videobuf_queue *q); |
| 221 | 213 | ||
