Commit 2ef40370 authored by Hans Petter Selasky's avatar Hans Petter Selasky Committed by Mauro Carvalho Chehab

[media] Fix compile warning: Dereferencing type-punned pointer will break strict-aliasing rules

Signed-off-by: default avatarHans Petter Selasky <hselasky@c2i.net>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 82f7b59c
...@@ -2276,7 +2276,7 @@ static int check_array_args(unsigned int cmd, void *parg, size_t *array_size, ...@@ -2276,7 +2276,7 @@ static int check_array_args(unsigned int cmd, void *parg, size_t *array_size,
break; break;
} }
*user_ptr = (void __user *)buf->m.planes; *user_ptr = (void __user *)buf->m.planes;
*kernel_ptr = (void **)&buf->m.planes; *kernel_ptr = (void *)&buf->m.planes;
*array_size = sizeof(struct v4l2_plane) * buf->length; *array_size = sizeof(struct v4l2_plane) * buf->length;
ret = 1; ret = 1;
} }
...@@ -2290,7 +2290,7 @@ static int check_array_args(unsigned int cmd, void *parg, size_t *array_size, ...@@ -2290,7 +2290,7 @@ static int check_array_args(unsigned int cmd, void *parg, size_t *array_size,
if (ctrls->count != 0) { if (ctrls->count != 0) {
*user_ptr = (void __user *)ctrls->controls; *user_ptr = (void __user *)ctrls->controls;
*kernel_ptr = (void **)&ctrls->controls; *kernel_ptr = (void *)&ctrls->controls;
*array_size = sizeof(struct v4l2_ext_control) *array_size = sizeof(struct v4l2_ext_control)
* ctrls->count; * ctrls->count;
ret = 1; ret = 1;
......
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