diff options
Diffstat (limited to 'include/media/v4l2-ctrls.h')
-rw-r--r-- | include/media/v4l2-ctrls.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/media/v4l2-ctrls.h b/include/media/v4l2-ctrls.h index d6540d201764..b7cd7a665e35 100644 --- a/include/media/v4l2-ctrls.h +++ b/include/media/v4l2-ctrls.h | |||
@@ -41,6 +41,7 @@ struct poll_table_struct; | |||
41 | * @p_s64: Pointer to a 64-bit signed value. | 41 | * @p_s64: Pointer to a 64-bit signed value. |
42 | * @p_u8: Pointer to a 8-bit unsigned value. | 42 | * @p_u8: Pointer to a 8-bit unsigned value. |
43 | * @p_u16: Pointer to a 16-bit unsigned value. | 43 | * @p_u16: Pointer to a 16-bit unsigned value. |
44 | * @p_u32: Pointer to a 32-bit unsigned value. | ||
44 | * @p_char: Pointer to a string. | 45 | * @p_char: Pointer to a string. |
45 | * @p: Pointer to a compound value. | 46 | * @p: Pointer to a compound value. |
46 | */ | 47 | */ |
@@ -49,6 +50,7 @@ union v4l2_ctrl_ptr { | |||
49 | s64 *p_s64; | 50 | s64 *p_s64; |
50 | u8 *p_u8; | 51 | u8 *p_u8; |
51 | u16 *p_u16; | 52 | u16 *p_u16; |
53 | u32 *p_u32; | ||
52 | char *p_char; | 54 | char *p_char; |
53 | void *p; | 55 | void *p; |
54 | }; | 56 | }; |