v4l2-fh.h (4f1af2a33c9c5fbd2bf31a1679378860aca79f9e) | v4l2-fh.h (c8d185ce33ecd560275f76c590fda4cdba824bd9) |
---|---|
1/* 2 * v4l2-fh.h 3 * 4 * V4L2 file handle. Store per file handle data for the V4L2 5 * framework. Using file handles is optional for the drivers. 6 * 7 * Copyright (C) 2009--2010 Nokia Corporation. 8 * --- 14 unchanged lines hidden (view full) --- 23 * 02110-1301 USA 24 */ 25 26#ifndef V4L2_FH_H 27#define V4L2_FH_H 28 29#include <linux/fs.h> 30#include <linux/list.h> | 1/* 2 * v4l2-fh.h 3 * 4 * V4L2 file handle. Store per file handle data for the V4L2 5 * framework. Using file handles is optional for the drivers. 6 * 7 * Copyright (C) 2009--2010 Nokia Corporation. 8 * --- 14 unchanged lines hidden (view full) --- 23 * 02110-1301 USA 24 */ 25 26#ifndef V4L2_FH_H 27#define V4L2_FH_H 28 29#include <linux/fs.h> 30#include <linux/list.h> |
31#include <linux/videodev2.h> |
|
31 32struct video_device; 33struct v4l2_ctrl_handler; 34 35struct v4l2_fh { 36 struct list_head list; 37 struct video_device *vdev; 38 struct v4l2_ctrl_handler *ctrl_handler; --- 64 unchanged lines hidden --- | 32 33struct video_device; 34struct v4l2_ctrl_handler; 35 36struct v4l2_fh { 37 struct list_head list; 38 struct video_device *vdev; 39 struct v4l2_ctrl_handler *ctrl_handler; --- 64 unchanged lines hidden --- |