v4l2-fh.h (2d8ad8719591fa803b0d589ed057fa46f49b7155) v4l2-fh.h (fc5602be7ca5b55174c5d6595089718779b28dfa)
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 *

--- 21 unchanged lines hidden (view full) ---

30
31struct video_device;
32struct v4l2_events;
33
34struct v4l2_fh {
35 struct list_head list;
36 struct video_device *vdev;
37 struct v4l2_events *events; /* events, pending and subscribed */
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 *

--- 21 unchanged lines hidden (view full) ---

30
31struct video_device;
32struct v4l2_events;
33
34struct v4l2_fh {
35 struct list_head list;
36 struct video_device *vdev;
37 struct v4l2_events *events; /* events, pending and subscribed */
38 enum v4l2_priority prio;
38};
39
40/*
41 * Initialise the file handle. Parts of the V4L2 framework using the
42 * file handles should be initialised in this function. Must be called
43 * from driver's v4l2_file_operations->open() handler if the driver
44 * uses v4l2_fh.
45 */

--- 20 unchanged lines hidden ---
39};
40
41/*
42 * Initialise the file handle. Parts of the V4L2 framework using the
43 * file handles should be initialised in this function. Must be called
44 * from driver's v4l2_file_operations->open() handler if the driver
45 * uses v4l2_fh.
46 */

--- 20 unchanged lines hidden ---