diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-18 16:10:58 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-19 22:06:52 +0900 |
commit | 0ab5c85d68505a19ae622d9f6d4cdd79f873570d (patch) | |
tree | 3175ec0f98ae5e6d7dea82ae3afaf6a67b65de09 /drivers/regulator | |
parent | 5c24d355dd9af29abb25fb3891122af5e80a551d (diff) | |
download | talos-op-linux-0ab5c85d68505a19ae622d9f6d4cdd79f873570d.tar.gz talos-op-linux-0ab5c85d68505a19ae622d9f6d4cdd79f873570d.zip |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/ti-abb-regulator.c b/drivers/regulator/ti-abb-regulator.c index 804c83a31d69..75fa64769b4b 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)) { |