Skip to content

Commit

Permalink
regulator: act8865: set correct number of regulators in pdata
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Beniamino Galvani authored and Mark Brown committed Jul 7, 2014
1 parent 7171511 commit 732714d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/regulator/act8865-regulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ static int act8865_pdata_from_dt(struct device *dev,
if (!pdata->regulators)
return -ENOMEM;

pdata->num_regulators = matched;
pdata->num_regulators = ARRAY_SIZE(act8865_matches);
regulator = pdata->regulators;

for (i = 0; i < ARRAY_SIZE(act8865_matches); i++) {
Expand Down

0 comments on commit 732714d

Please sign in to comment.