aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBeniamino Galvani <b.galvani@gmail.com>2014-07-05 09:20:53 -0400
committerMark Brown <broonie@linaro.org>2014-08-05 13:02:52 -0400
commitbbb83f38a8b0702f1b333aef1e8a3aa14068cdc7 (patch)
tree2ab588d9afa6b088528055c3fb9217dfd36c0a64
parent40d3bc19667337d4cbad0075d048261fcbe39117 (diff)
regulator: act8865: set correct number of regulators in pdata
act8865_pdata_from_dt() populates the array pdata->regulators with all the regulators and then assigns the field init_data only for the ones actually found in the DT. The patch changes the value assigned to pdata->num_regulators to match the size of the array. Signed-off-by: Beniamino Galvani <b.galvani@gmail.com> Tested-by: Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r--drivers/regulator/act8865-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/act8865-regulator.c b/drivers/regulator/act8865-regulator.c
index f07be3647985..52d1b6cad76f 100644
--- a/drivers/regulator/act8865-regulator.c
+++ b/drivers/regulator/act8865-regulator.c
@@ -230,7 +230,7 @@ static int act8865_pdata_from_dt(struct device *dev,
230 if (!pdata->regulators) 230 if (!pdata->regulators)
231 return -ENOMEM; 231 return -ENOMEM;
232 232
233 pdata->num_regulators = matched; 233 pdata->num_regulators = ARRAY_SIZE(act8865_matches);
234 regulator = pdata->regulators; 234 regulator = pdata->regulators;
235 235
236 for (i = 0; i < ARRAY_SIZE(act8865_matches); i++) { 236 for (i = 0; i < ARRAY_SIZE(act8865_matches); i++) {