From: Yadwinder Singh Brar Date: Fri, 6 Jul 2012 09:20:08 +0000 (+0530) Subject: regulator: max77686: Initialise rmatch.of_node to NULL. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d1ef065d43476fd0e245cad2ef1d226e7cb6324b;p=linux-beck.git 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 Signed-off-by: Mark Brown --- 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; }