aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/pvrusb2/pvrusb2-ctrl.h
diff options
context:
space:
mode:
authorMike Isely <isely@pobox.com>2006-06-25 19:04:44 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-06-26 23:17:28 -0400
commita761f4311b3e31008c7d168c3a8c254a9c7e35ac (patch)
tree03817e0334a6e019251a3483dc8147a418caabb5 /drivers/media/video/pvrusb2/pvrusb2-ctrl.h
parent332139635a8c0431cc2eb67adf1e983eb96728e3 (diff)
V4L/DVB (4240): Various V4L control enhancements in pvrusb2
Signed-off-by: Mike Isely <isely@pobox.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/pvrusb2/pvrusb2-ctrl.h')
-rw-r--r--drivers/media/video/pvrusb2/pvrusb2-ctrl.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-ctrl.h b/drivers/media/video/pvrusb2/pvrusb2-ctrl.h
index bf4cf65441fb..c1680053cd64 100644
--- a/drivers/media/video/pvrusb2/pvrusb2-ctrl.h
+++ b/drivers/media/video/pvrusb2/pvrusb2-ctrl.h
@@ -71,6 +71,13 @@ int pvr2_ctrl_get_valname(struct pvr2_ctrl *,int,char *,unsigned int,
71/* Return true if control is writable */ 71/* Return true if control is writable */
72int pvr2_ctrl_is_writable(struct pvr2_ctrl *); 72int pvr2_ctrl_is_writable(struct pvr2_ctrl *);
73 73
74/* Return V4L flags value for control (or zero if there is no v4l control
75 actually under this control) */
76unsigned int pvr2_ctrl_get_v4lflags(struct pvr2_ctrl *);
77
78/* Return V4L ID for this control or zero if none */
79int pvr2_ctrl_get_v4lid(struct pvr2_ctrl *);
80
74/* Return true if control has custom symbolic representation */ 81/* Return true if control has custom symbolic representation */
75int pvr2_ctrl_has_custom_symbols(struct pvr2_ctrl *); 82int pvr2_ctrl_has_custom_symbols(struct pvr2_ctrl *);
76 83