diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-07-12 22:23:25 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-07-12 18:21:24 +0100 |
commit | e76b9cc7b88b4807e129779ca36298c76486a06c (patch) | |
tree | 5d8d030598bdc0453f4e811378229e3a295fa93f /drivers | |
parent | c06eed397a174d9762f1c8a72fc88259f3641af2 (diff) | |
download | op-kernel-dev-e76b9cc7b88b4807e129779ca36298c76486a06c.zip op-kernel-dev-e76b9cc7b88b4807e129779ca36298c76486a06c.tar.gz |
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 <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/regulator/da9052-regulator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/da9052-regulator.c b/drivers/regulator/da9052-regulator.c index 5f8f71a..903299c 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; } } |