summaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/v4l2-common.h
diff options
context:
space:
mode:
authorHans Verkuil2014-03-17 13:54:22 +0100
committerMauro Carvalho Chehab2014-04-16 23:20:02 +0200
commit2dd477dbeb53937213d741db53110ac39ca245d1 (patch)
treea49b468e31cc692c8593f69633a81bdb05836e41 /include/uapi/linux/v4l2-common.h
parent[media] videobuf2-core: fix sparse errors (diff)
downloadkernel-qcow2-linux-2dd477dbeb53937213d741db53110ac39ca245d1.tar.gz
kernel-qcow2-linux-2dd477dbeb53937213d741db53110ac39ca245d1.tar.xz
kernel-qcow2-linux-2dd477dbeb53937213d741db53110ac39ca245d1.zip
[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: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'include/uapi/linux/v4l2-common.h')
-rw-r--r--include/uapi/linux/v4l2-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/v4l2-common.h b/include/uapi/linux/v4l2-common.h
index 9bf508ad0957..2f6f8cafe773 100644
--- a/include/uapi/linux/v4l2-common.h
+++ b/include/uapi/linux/v4l2-common.h
@@ -75,7 +75,7 @@ struct v4l2_edid {
__u32 start_block;
__u32 blocks;
__u32 reserved[5];
- __u8 __user *edid;
+ __u8 *edid;
};
#endif /* __V4L2_COMMON__ */