From e76b9cc7b88b4807e129779ca36298c76486a06c Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Thu, 12 Jul 2012 22:23:25 +0800 Subject: [PATCH] regulator: da9052: initialize of_node param for regulator register Initialize config.of_node for regulator before registering. This is needed for DT based regulator support. Signed-off-by: Axel Lin Signed-off-by: Mark Brown --- drivers/regulator/da9052-regulator.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/regulator/da9052-regulator.c b/drivers/regulator/da9052-regulator.c index 5f8f71acb6c0..903299cf15cf 100644 --- a/drivers/regulator/da9052-regulator.c +++ b/drivers/regulator/da9052-regulator.c @@ -410,6 +410,7 @@ static int __devinit da9052_regulator_probe(struct platform_device *pdev) regulator->info->reg_desc.name)) { config.init_data = of_get_regulator_init_data( &pdev->dev, np); + config.of_node = np; break; } }