diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-07-25 06:39:54 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-07-26 12:18:11 -0400 |
commit | f894dfd735237548d282d6fd55b6ebb4b2fd9ef2 (patch) | |
tree | bf7313318e8653d82ddfd001de742c48e93f1f9d /include/media | |
parent | 668acf32dfa1f1a975213f77bf17ee435f5a8edd (diff) |
V4L/DVB (8488): videodev: remove some CONFIG_VIDEO_V4L1_COMPAT code from v4l2-dev.h
The video_device_create_file and video_device_remove_file functions can be
removed from v4l2-dev.h, removing the dependency on videodev.h in v4l2-dev.h.
Also removed a few more videodev.h includes that should have been videodev2.h.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/v4l2-dev.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/include/media/v4l2-dev.h b/include/media/v4l2-dev.h index ae2b1e6bdf47..2fe38858516b 100644 --- a/include/media/v4l2-dev.h +++ b/include/media/v4l2-dev.h | |||
@@ -16,11 +16,7 @@ | |||
16 | #include <linux/device.h> | 16 | #include <linux/device.h> |
17 | #include <linux/mutex.h> | 17 | #include <linux/mutex.h> |
18 | #include <linux/compiler.h> /* need __user */ | 18 | #include <linux/compiler.h> /* need __user */ |
19 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
20 | #include <linux/videodev.h> | ||
21 | #else | ||
22 | #include <linux/videodev2.h> | 19 | #include <linux/videodev2.h> |
23 | #endif | ||
24 | 20 | ||
25 | #define VIDEO_MAJOR 81 | 21 | #define VIDEO_MAJOR 81 |
26 | /* Minor device allocation */ | 22 | /* Minor device allocation */ |
@@ -102,27 +98,6 @@ void video_unregister_device(struct video_device *); | |||
102 | struct video_device *video_device_alloc(void); | 98 | struct video_device *video_device_alloc(void); |
103 | void video_device_release(struct video_device *vfd); | 99 | void video_device_release(struct video_device *vfd); |
104 | 100 | ||
105 | #ifdef CONFIG_VIDEO_V4L1_COMPAT | ||
106 | #include <linux/mm.h> | ||
107 | |||
108 | static inline int __must_check | ||
109 | video_device_create_file(struct video_device *vfd, | ||
110 | struct device_attribute *attr) | ||
111 | { | ||
112 | int ret = device_create_file(&vfd->dev, attr); | ||
113 | if (ret < 0) | ||
114 | printk(KERN_WARNING "%s error: %d\n", __func__, ret); | ||
115 | return ret; | ||
116 | } | ||
117 | static inline void | ||
118 | video_device_remove_file(struct video_device *vfd, | ||
119 | struct device_attribute *attr) | ||
120 | { | ||
121 | device_remove_file(&vfd->dev, attr); | ||
122 | } | ||
123 | |||
124 | #endif /* CONFIG_VIDEO_V4L1_COMPAT */ | ||
125 | |||
126 | #ifdef OBSOLETE_DEVDATA /* to be removed soon */ | 101 | #ifdef OBSOLETE_DEVDATA /* to be removed soon */ |
127 | /* helper functions to access driver private data. */ | 102 | /* helper functions to access driver private data. */ |
128 | static inline void *video_get_drvdata(struct video_device *dev) | 103 | static inline void *video_get_drvdata(struct video_device *dev) |