Commit 3f6375a2 authored by Daniel Lundberg Pedersen's avatar Daniel Lundberg Pedersen Committed by Hans Verkuil

media: videodev2.h: Fix p_s32 and p_s64 pointer types

Use the intended pointer types for p_s32 and p_64 in the union of the
struct v4l2_ext_control.

Fixes: e77eb663 ("videodev2.h: add p_s32 and p_s64 pointers")
Signed-off-by: default avatarDaniel Lundberg Pedersen <dlp@qtec.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 8217af09
......@@ -1807,8 +1807,8 @@ struct v4l2_ext_control {
__u8 __user *p_u8;
__u16 __user *p_u16;
__u32 __user *p_u32;
__u32 __user *p_s32;
__u32 __user *p_s64;
__s32 __user *p_s32;
__s64 __user *p_s64;
struct v4l2_area __user *p_area;
struct v4l2_ctrl_h264_sps __user *p_h264_sps;
struct v4l2_ctrl_h264_pps *p_h264_pps;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment