Commit 2dd477db authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab

[media] v4l2-common.h: remove __user annotation in struct v4l2_edid

The edid array is copied to kernelspace by the v4l2 core, so drivers
shouldn't see the __user annotation. This conforms to other structs like
v4l2_ext_controls where the data pointed to is copied to from user to
kernelspace.
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent a1d36d8c
...@@ -75,7 +75,7 @@ struct v4l2_edid { ...@@ -75,7 +75,7 @@ struct v4l2_edid {
__u32 start_block; __u32 start_block;
__u32 blocks; __u32 blocks;
__u32 reserved[5]; __u32 reserved[5];
__u8 __user *edid; __u8 *edid;
}; };
#endif /* __V4L2_COMMON__ */ #endif /* __V4L2_COMMON__ */
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