mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-29 01:51:39 +00:00
V4L/DVB: V4L: File handles
This patch adds a list of v4l2_fh structures to every video_device. It allows using file handle related information in V4L2. The event interface is one example of such use. The use of v4l2_fh is not mandatory for drivers. Signed-off-by: Sakari Ailus <sakari.ailus@maxwell.research.nokia.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
96d8eab5d0
commit
1babcb460f
5 changed files with 139 additions and 1 deletions
|
@ -32,6 +32,7 @@ struct v4l2_device;
|
|||
Drivers can clear this flag if they want to block all future
|
||||
device access. It is cleared by video_unregister_device. */
|
||||
#define V4L2_FL_REGISTERED (0)
|
||||
#define V4L2_FL_USES_V4L2_FH (1)
|
||||
|
||||
struct v4l2_file_operations {
|
||||
struct module *owner;
|
||||
|
@ -77,6 +78,10 @@ struct video_device
|
|||
/* attribute to differentiate multiple indices on one physical device */
|
||||
int index;
|
||||
|
||||
/* V4L2 file handles */
|
||||
spinlock_t fh_lock; /* Lock for all v4l2_fhs */
|
||||
struct list_head fh_list; /* List of struct v4l2_fh */
|
||||
|
||||
int debug; /* Activates debug level*/
|
||||
|
||||
/* Video standard vars */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue