aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/tps65023-regulator.c
diff options
context:
space:
mode:
authorRajendra Nayak <rnayak@ti.com>2011-11-18 06:17:19 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-11-23 13:47:04 -0500
commit2c043bcbf287dc69848054d5c02c55c20f7a7bc5 (patch)
tree72de90d5c943694ef18b74d9250235030a4b7eef /drivers/regulator/tps65023-regulator.c
parentcef49102c1d6b1e7adcb3f8b706757e0731e955c (diff)
regulator: pass additional of_node to regulator_register()
With device tree support for regulators, its needed that the regulator_dev->dev device has the right of_node attached. To be able to do this add an additional parameter to the regulator_register() api, wherein the dt-adapted driver can then pass this additional info onto the regulator core. Signed-off-by: Rajendra Nayak <rnayak@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/tps65023-regulator.c')
-rw-r--r--drivers/regulator/tps65023-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/tps65023-regulator.c b/drivers/regulator/tps65023-regulator.c
index 9fb4c7b8175..7fd3b9092d1 100644
--- a/drivers/regulator/tps65023-regulator.c
+++ b/drivers/regulator/tps65023-regulator.c
@@ -496,7 +496,7 @@ static int __devinit tps_65023_probe(struct i2c_client *client,
496 496
497 /* Register the regulators */ 497 /* Register the regulators */
498 rdev = regulator_register(&tps->desc[i], &client->dev, 498 rdev = regulator_register(&tps->desc[i], &client->dev,
499 init_data, tps); 499 init_data, tps, NULL);
500 if (IS_ERR(rdev)) { 500 if (IS_ERR(rdev)) {
501 dev_err(&client->dev, "failed to register %s\n", 501 dev_err(&client->dev, "failed to register %s\n",
502 id->name); 502 id->name);