aboutsummaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2008-07-25 06:39:54 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-07-26 12:18:11 -0400
commitf894dfd735237548d282d6fd55b6ebb4b2fd9ef2 (patch)
treebf7313318e8653d82ddfd001de742c48e93f1f9d /include/media
parent668acf32dfa1f1a975213f77bf17ee435f5a8edd (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.h25
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 *);
102struct video_device *video_device_alloc(void); 98struct video_device *video_device_alloc(void);
103void video_device_release(struct video_device *vfd); 99void video_device_release(struct video_device *vfd);
104 100
105#ifdef CONFIG_VIDEO_V4L1_COMPAT
106#include <linux/mm.h>
107
108static inline int __must_check
109video_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}
117static inline void
118video_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. */
128static inline void *video_get_drvdata(struct video_device *dev) 103static inline void *video_get_drvdata(struct video_device *dev)