Commit 4f7ddec2 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: go7007: fixes due to video_usercopy api change

video_usercopy() just changed its arguments, so fix up the go7007 driver
to properly build.
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 238c6d54
...@@ -375,8 +375,7 @@ static int clip_to_modet_map(struct go7007 *go, int region, ...@@ -375,8 +375,7 @@ static int clip_to_modet_map(struct go7007 *go, int region,
return 0; return 0;
} }
static int go7007_do_ioctl(struct inode *inode, struct file *file, static long go7007_do_ioctl(struct file *file, unsigned int cmd, void *arg)
unsigned int cmd, void *arg)
{ {
struct go7007_file *gofh = file->private_data; struct go7007_file *gofh = file->private_data;
struct go7007 *go = gofh->go; struct go7007 *go = gofh->go;
...@@ -1335,7 +1334,7 @@ static int go7007_ioctl(struct inode *inode, struct file *file, ...@@ -1335,7 +1334,7 @@ static int go7007_ioctl(struct inode *inode, struct file *file,
if (gofh->go->status != STATUS_ONLINE) if (gofh->go->status != STATUS_ONLINE)
return -EIO; return -EIO;
return video_usercopy(inode, file, cmd, arg, go7007_do_ioctl); return video_usercopy(file, cmd, arg, go7007_do_ioctl);
} }
static ssize_t go7007_read(struct file *file, char __user *data, static ssize_t go7007_read(struct file *file, char __user *data,
......
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