Commit 0555985d authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

[PATCH] sonypi trivial user annotations

Signed-off-by: default avatarAl Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 56c3b7d7
...@@ -1021,11 +1021,11 @@ static int sonypi_misc_ioctl(struct inode *ip, struct file *fp, ...@@ -1021,11 +1021,11 @@ static int sonypi_misc_ioctl(struct inode *ip, struct file *fp,
ret = -EIO; ret = -EIO;
break; break;
} }
if (copy_to_user((u8 *)arg, &val8, sizeof(val8))) if (copy_to_user(argp, &val8, sizeof(val8)))
ret = -EFAULT; ret = -EFAULT;
break; break;
case SONYPI_IOCSFAN: case SONYPI_IOCSFAN:
if (copy_from_user(&val8, (u8 *)arg, sizeof(val8))) { if (copy_from_user(&val8, argp, sizeof(val8))) {
ret = -EFAULT; ret = -EFAULT;
break; break;
} }
...@@ -1038,7 +1038,7 @@ static int sonypi_misc_ioctl(struct inode *ip, struct file *fp, ...@@ -1038,7 +1038,7 @@ static int sonypi_misc_ioctl(struct inode *ip, struct file *fp,
ret = -EIO; ret = -EIO;
break; break;
} }
if (copy_to_user((u8 *)arg, &val8, sizeof(val8))) if (copy_to_user(argp, &val8, sizeof(val8)))
ret = -EFAULT; ret = -EFAULT;
break; break;
default: default:
......
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