diff options
author | Yadwinder Singh Brar <yadi.brar01@gmail.com> | 2012-07-06 11:20:08 +0200 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-07-06 20:17:29 +0200 |
commit | d1ef065d43476fd0e245cad2ef1d226e7cb6324b (patch) | |
tree | 227503d3d42dfa27ba1588b0715dff534ff3a1b3 /drivers/regulator/max77686.c | |
parent | regulator: tps65910: add support for input supply (diff) | |
download | linux-d1ef065d43476fd0e245cad2ef1d226e7cb6324b.tar.xz linux-d1ef065d43476fd0e245cad2ef1d226e7cb6324b.zip |
regulator: max77686: Initialise rmatch.of_node to NULL.
Now of_regulator_match() returns without finding the match if match->of_node
is not NULL.
Signed-off-by: Yadwinder Singh Brar <yadi.brar@samsung.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/max77686.c')
-rw-r--r-- | drivers/regulator/max77686.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/max77686.c b/drivers/regulator/max77686.c index fc695eb3886e..c564af6f05a3 100644 --- a/drivers/regulator/max77686.c +++ b/drivers/regulator/max77686.c @@ -262,6 +262,7 @@ static int max77686_pmic_dt_parse_pdata(struct max77686_dev *iodev, for (i = 0; i < pdata->num_regulators; i++) { rmatch.name = regulators[i].name; rmatch.init_data = NULL; + rmatch.of_node = NULL; of_regulator_match(iodev->dev, regulators_np, &rmatch, 1); rdata[i].initdata = rmatch.init_data; } |