summaryrefslogtreecommitdiff
path: root/drivers/regulator/ti-abb-regulator.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-02-18 10:40:58 (GMT)
committerMark Brown <broonie@linaro.org>2014-02-19 13:06:52 (GMT)
commit0ab5c85d68505a19ae622d9f6d4cdd79f873570d (patch)
tree3175ec0f98ae5e6d7dea82ae3afaf6a67b65de09 /drivers/regulator/ti-abb-regulator.c
parent5c24d355dd9af29abb25fb3891122af5e80a551d (diff)
downloadlinux-0ab5c85d68505a19ae622d9f6d4cdd79f873570d.tar.xz
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/ti-abb-regulator.c')
-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)) {