aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h')
-rw-r--r--drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h b/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h
index 4fd5ca2f6fc9..3887190079d1 100644
--- a/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h
+++ b/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h
@@ -94,6 +94,7 @@ typedef int (*pvr2_ctlf_val_to_sym)(struct pvr2_ctrl *,int msk,int val,
94typedef int (*pvr2_ctlf_sym_to_val)(struct pvr2_ctrl *, 94typedef int (*pvr2_ctlf_sym_to_val)(struct pvr2_ctrl *,
95 const char *,unsigned int, 95 const char *,unsigned int,
96 int *mskp,int *valp); 96 int *mskp,int *valp);
97typedef unsigned int (*pvr2_ctlf_get_v4lflags)(struct pvr2_ctrl *);
97 98
98/* This structure describes a specific control. A table of these is set up 99/* This structure describes a specific control. A table of these is set up
99 in pvrusb2-hdw.c. */ 100 in pvrusb2-hdw.c. */
@@ -111,6 +112,7 @@ struct pvr2_ctl_info {
111 pvr2_ctlf_sym_to_val sym_to_val; /* Custom convert symbol->value */ 112 pvr2_ctlf_sym_to_val sym_to_val; /* Custom convert symbol->value */
112 pvr2_ctlf_is_dirty is_dirty; /* Return true if dirty */ 113 pvr2_ctlf_is_dirty is_dirty; /* Return true if dirty */
113 pvr2_ctlf_clear_dirty clear_dirty; /* Clear dirty state */ 114 pvr2_ctlf_clear_dirty clear_dirty; /* Clear dirty state */
115 pvr2_ctlf_get_v4lflags get_v4lflags;/* Retrieve v4l flags */
114 116
115 /* Control's type (int, enum, bitmask) */ 117 /* Control's type (int, enum, bitmask) */
116 enum pvr2_ctl_type type; 118 enum pvr2_ctl_type type;