summaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-02-18 16:10:58 +0530
committerMark Brown <broonie@linaro.org>2014-02-19 22:06:52 +0900
commit0ab5c85d68505a19ae622d9f6d4cdd79f873570d (patch)
tree3175ec0f98ae5e6d7dea82ae3afaf6a67b65de09 /drivers/regulator
parent5c24d355dd9af29abb25fb3891122af5e80a551d (diff)
downloadop-kernel-dev-0ab5c85d68505a19ae622d9f6d4cdd79f873570d.zip
op-kernel-dev-0ab5c85d68505a19ae622d9f6d4cdd79f873570d.tar.gz
regulator: ti-abb: Do not hardcode return value
Propagate the error value returned by the function instead. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/ti-abb-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/ti-abb-regulator.c b/drivers/regulator/ti-abb-regulator.c
index 804c83a..75fa647 100644
--- a/drivers/regulator/ti-abb-regulator.c
+++ b/drivers/regulator/ti-abb-regulator.c
@@ -522,7 +522,7 @@ static int ti_abb_init_table(struct device *dev, struct ti_abb *abb,
num_entries = of_property_count_u32_elems(dev->of_node, pname);
if (num_entries < 0) {
dev_err(dev, "No '%s' property?\n", pname);
- return -ENODEV;
+ return num_entries;
}
if (!num_entries || (num_entries % num_values)) {
OpenPOWER on IntegriCloud