aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Carpenter <[email protected]>2012-09-25 10:05:33 +0300
committerOhad Ben-Cohen <[email protected]>2012-09-30 11:44:53 +0200
commitbec109a430e8c67bae1743f7e71898283234a77f (patch)
tree181eb8689c59f3fa6a63f28468591fceb93a68c9
parentae768d5fac18cd4b3ff51a4860b89fabba8ccc65 (diff)
remoteproc: return -EFAULT on copy_from_user failure
copy_from_user() returns the number of bytes remaining to be copied, but we want to return an error code here. Signed-off-by: Dan Carpenter <[email protected]> Signed-off-by: Ohad Ben-Cohen <[email protected]>
-rw-r--r--drivers/remoteproc/remoteproc_debugfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/remoteproc/remoteproc_debugfs.c b/drivers/remoteproc/remoteproc_debugfs.c
index ea90a5643db3..157a57309601 100644
--- a/drivers/remoteproc/remoteproc_debugfs.c
+++ b/drivers/remoteproc/remoteproc_debugfs.c
@@ -161,7 +161,7 @@ rproc_recovery_write(struct file *filp, const char __user *user_buf,
ret = copy_from_user(buf, user_buf, count);
if (ret)
- return ret;
+ return -EFAULT;
/* remove end of line */
if (buf[count - 1] == '\n')