]> err.no Git - linux-2.6/blobdiff - include/linux/videodev.h
[PATCH] sched: reduce overhead of calc_load
[linux-2.6] / include / linux / videodev.h
index 392592a040c544007c233e9d0859797f43fb456e..91140091ced2f2b510a3ac2bf05d79d738078f0e 100644 (file)
@@ -27,6 +27,18 @@ video_device_remove_file(struct video_device *vfd,
        class_device_remove_file(&vfd->class_dev, attr);
 }
 
+#if OBSOLETE_OWNER /* to be removed in 2.6.15 */
+/* helper functions to access driver private data. */
+static inline void *video_get_drvdata(struct video_device *dev)
+{
+       return dev->priv;
+}
+
+static inline void video_set_drvdata(struct video_device *dev, void *data)
+{
+       dev->priv = data;
+}
+#endif
 
 extern int video_exclusive_open(struct inode *inode, struct file *file);
 extern int video_exclusive_release(struct inode *inode, struct file *file);