aboutsummaryrefslogtreecommitdiffstats
path: root/include/media/v4l2-dev.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/media/v4l2-dev.h')
-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 ae2b1e6bdf4..2fe38858516 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)