mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 07:44:21 +08:00
uio: Reduce return paths from uio_write()
Drive all return paths for uio_write() through a single block at the end of the function. Signed-off-by: Hamish Martin <hamish.martin@alliedtelesis.co.nz> Reviewed-by: Chris Packham <chris.packham@alliedtelesis.co.nz> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
f59acbc5e0
commit
81daa406c2
@ -568,20 +568,29 @@ static ssize_t uio_write(struct file *filep, const char __user *buf,
|
||||
ssize_t retval;
|
||||
s32 irq_on;
|
||||
|
||||
if (!idev->info->irq)
|
||||
return -EIO;
|
||||
if (!idev->info->irq) {
|
||||
retval = -EIO;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (count != sizeof(s32))
|
||||
return -EINVAL;
|
||||
if (count != sizeof(s32)) {
|
||||
retval = -EINVAL;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (!idev->info->irqcontrol)
|
||||
return -ENOSYS;
|
||||
if (!idev->info->irqcontrol) {
|
||||
retval = -ENOSYS;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (copy_from_user(&irq_on, buf, count))
|
||||
return -EFAULT;
|
||||
if (copy_from_user(&irq_on, buf, count)) {
|
||||
retval = -EFAULT;
|
||||
goto out;
|
||||
}
|
||||
|
||||
retval = idev->info->irqcontrol(idev->info, irq_on);
|
||||
|
||||
out:
|
||||
return retval ? retval : sizeof(s32);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user