mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-27 13:05:38 +07:00
[media] v4l2-compat-ioctl32: fix compile warning
drivers/media/video/v4l2-compat-ioctl32.c: In function 'get_v4l2_format32': drivers/media/video/v4l2-compat-ioctl32.c:169:2: warning: case value '0' not in enumerated type 'enum v4l2_buf_type' drivers/media/video/v4l2-compat-ioctl32.c: In function 'put_v4l2_format32': drivers/media/video/v4l2-compat-ioctl32.c:200:2: warning: case value '0' not in enumerated type 'enum v4l2_buf_type' Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
1a5e5af0d2
commit
36f54ff67b
@ -165,8 +165,6 @@ static int get_v4l2_format32(struct v4l2_format *kp, struct v4l2_format32 __user
|
|||||||
if (copy_from_user(kp, up, sizeof(kp->fmt.raw_data)))
|
if (copy_from_user(kp, up, sizeof(kp->fmt.raw_data)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
return 0;
|
return 0;
|
||||||
case 0:
|
|
||||||
return -EINVAL;
|
|
||||||
default:
|
default:
|
||||||
printk(KERN_INFO "compat_ioctl32: unexpected VIDIOC_FMT type %d\n",
|
printk(KERN_INFO "compat_ioctl32: unexpected VIDIOC_FMT type %d\n",
|
||||||
kp->type);
|
kp->type);
|
||||||
@ -196,8 +194,6 @@ static int put_v4l2_format32(struct v4l2_format *kp, struct v4l2_format32 __user
|
|||||||
if (copy_to_user(up, kp, sizeof(up->fmt.raw_data)))
|
if (copy_to_user(up, kp, sizeof(up->fmt.raw_data)))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
return 0;
|
return 0;
|
||||||
case 0:
|
|
||||||
return -EINVAL;
|
|
||||||
default:
|
default:
|
||||||
printk(KERN_INFO "compat_ioctl32: unexpected VIDIOC_FMT type %d\n",
|
printk(KERN_INFO "compat_ioctl32: unexpected VIDIOC_FMT type %d\n",
|
||||||
kp->type);
|
kp->type);
|
||||||
|
Loading…
Reference in New Issue
Block a user