Commit fbd532e3 authored by Michal Schmidt's avatar Michal Schmidt Committed by Linus Torvalds

[PATCH] USB: Fix vicam debug compile, fix user access

The last copy_from_user patch to the vicam driver broke compilation with
VICAM_DEBUG on.

There is also another copy_from_user missing in case VIDIOCSPICT. 

This fixes both issues.
parent 96a750f5
...@@ -612,15 +612,20 @@ vicam_ioctl(struct inode *inode, struct file *file, unsigned int ioctlnr, unsign ...@@ -612,15 +612,20 @@ vicam_ioctl(struct inode *inode, struct file *file, unsigned int ioctlnr, unsign
case VIDIOCSPICT: case VIDIOCSPICT:
{ {
struct video_picture *vp = (struct video_picture *) arg; struct video_picture vp;
DBG("VIDIOCSPICT depth = %d, pal = %d\n", vp->depth, if (copy_from_user(&vp, arg, sizeof(vp))) {
vp->palette); retval = -EFAULT;
break;
}
DBG("VIDIOCSPICT depth = %d, pal = %d\n", vp.depth,
vp.palette);
cam->gain = vp->brightness >> 8; cam->gain = vp.brightness >> 8;
if (vp->depth != 24 if (vp.depth != 24
|| vp->palette != VIDEO_PALETTE_RGB24) || vp.palette != VIDEO_PALETTE_RGB24)
retval = -EINVAL; retval = -EINVAL;
break; break;
...@@ -660,7 +665,7 @@ vicam_ioctl(struct inode *inode, struct file *file, unsigned int ioctlnr, unsign ...@@ -660,7 +665,7 @@ vicam_ioctl(struct inode *inode, struct file *file, unsigned int ioctlnr, unsign
break; break;
} }
DBG("VIDIOCSWIN %d x %d\n", vw->width, vw->height); DBG("VIDIOCSWIN %d x %d\n", vw.width, vw.height);
if ( vw.width != 320 || vw.height != 240 ) if ( vw.width != 320 || vw.height != 240 )
retval = -EFAULT; retval = -EFAULT;
......
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