This pointer is used to point to data that is constant. Thanks to this
we can avoid a lot of casting and we make more clear when the data is
constant or variable.
Suggested-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Ricardo Ribalda Delgado <ribalda@kernel.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
  * @p_hevc_slice_params:       Pointer to an HEVC slice parameters structure.
  * @p_area:                    Pointer to an area.
  * @p:                         Pointer to a compound value.
+ * @p_const:                   Pointer to a constant compound value.
  */
 union v4l2_ctrl_ptr {
        s32 *p_s32;
        struct v4l2_ctrl_hevc_slice_params *p_hevc_slice_params;
        struct v4l2_area *p_area;
        void *p;
+       const void *p_const;
 };
 
 /**