aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/ab3100-core.c
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@stericsson.com>2009-08-13 11:49:38 +0200
committerSamuel Ortiz <sameo@linux.intel.com>2009-09-17 09:47:17 +0200
commit7cdc2b98cec4c9b5bd563adf9eec90e7a7e12234 (patch)
tree5a6afdfbd5fc8da7f8ddfe7ea863737bcf93ff28 /drivers/mfd/ab3100-core.c
parentmfd: AB3100 accessor function cleanups (diff)
downloadlinux-dev-7cdc2b98cec4c9b5bd563adf9eec90e7a7e12234.tar.xz
linux-dev-7cdc2b98cec4c9b5bd563adf9eec90e7a7e12234.zip
mfd: AB3100 propagate error
This makes ab3100_set_register_interruptible() propagate the error code from suboperations properly so it can be handles properly. (A special case comes from signal interruption.) Signed-off-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/ab3100-core.c')
-rw-r--r--drivers/mfd/ab3100-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/ab3100-core.c b/drivers/mfd/ab3100-core.c
index ffe4b6415465..377ec2ba6549 100644
--- a/drivers/mfd/ab3100-core.c
+++ b/drivers/mfd/ab3100-core.c
@@ -107,7 +107,7 @@ int ab3100_set_register_interruptible(struct ab3100 *ab3100, u8 reg, u8 regval)
err = 0;
}
mutex_unlock(&ab3100->access_mutex);
- return 0;
+ return err;
}
EXPORT_SYMBOL(ab3100_set_register_interruptible);