Commit a7f3943c authored by Dan Carpenter's avatar Dan Carpenter Committed by Greg Kroah-Hartman

Staging: vme: silence a Sparse warning

Sparse complains that "arg" is not a __user pointer.  The "argp" and
"arg" variables are equivalent but argp is declared as a __user pointer.
Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Acked-By: default avatarMartyn Welch <martyn.welch@ge.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e97e6c4f
...@@ -474,7 +474,7 @@ static int vme_user_ioctl(struct inode *inode, struct file *file, ...@@ -474,7 +474,7 @@ static int vme_user_ioctl(struct inode *inode, struct file *file,
case CONTROL_MINOR: case CONTROL_MINOR:
switch (cmd) { switch (cmd) {
case VME_IRQ_GEN: case VME_IRQ_GEN:
copied = copy_from_user(&irq_req, (char *)arg, copied = copy_from_user(&irq_req, argp,
sizeof(struct vme_irq_id)); sizeof(struct vme_irq_id));
if (copied != 0) { if (copied != 0) {
printk(KERN_WARNING "Partial copy from userspace\n"); printk(KERN_WARNING "Partial copy from userspace\n");
......
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