[PATCH v5 3/4] regulator: pass additional of_node to regulator_register()
From: Thomas Abraham <hidden>
Date: 2011-12-04 09:53:11
Also in:
linux-devicetree, linux-omap, lkml
Hi Rajendra, On 18 November 2011 16:47, Rajendra Nayak [off-list ref] wrote:
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 <redacted> Acked-by: Mark Brown <redacted> Cc: Michael Hennerich <michael.hennerich@analog.com> Cc: Ian Lartey <redacted> Cc: Dimitris Papastamos <redacted> Cc: Jaroslav Kysela <perex@perex.cz> Cc: Takashi Iwai <redacted> Cc: Wolfram Sang <redacted> Cc: Zeng Zhaoming <redacted> Cc: Dan Carpenter <redacted> --- ?drivers/regulator/88pm8607.c ? ? ? ? ? | ? ?2 +- ?drivers/regulator/aat2870-regulator.c ?| ? ?2 +- ?drivers/regulator/ab3100.c ? ? ? ? ? ? | ? ?2 +- ?drivers/regulator/ab8500.c ? ? ? ? ? ? | ? ?2 +- ?drivers/regulator/ad5398.c ? ? ? ? ? ? | ? ?2 +- ?drivers/regulator/bq24022.c ? ? ? ? ? ?| ? ?2 +- ?drivers/regulator/core.c ? ? ? ? ? ? ? | ? ?3 ++- ?drivers/regulator/da903x.c ? ? ? ? ? ? | ? ?2 +- ?drivers/regulator/db8500-prcmu.c ? ? ? | ? ?2 +- ?drivers/regulator/dummy.c ? ? ? ? ? ? ?| ? ?2 +- ?drivers/regulator/fixed.c ? ? ? ? ? ? ?| ? ?2 +- ?drivers/regulator/isl6271a-regulator.c | ? ?2 +- ?drivers/regulator/lp3971.c ? ? ? ? ? ? | ? ?2 +- ?drivers/regulator/lp3972.c ? ? ? ? ? ? | ? ?2 +- ?drivers/regulator/max1586.c ? ? ? ? ? ?| ? ?2 +- ?drivers/regulator/max8649.c ? ? ? ? ? ?| ? ?2 +- ?drivers/regulator/max8660.c ? ? ? ? ? ?| ? ?2 +- ?drivers/regulator/max8925-regulator.c ?| ? ?2 +- ?drivers/regulator/max8952.c ? ? ? ? ? ?| ? ?2 +- ?drivers/regulator/max8997.c ? ? ? ? ? ?| ? ?2 +- ?drivers/regulator/max8998.c ? ? ? ? ? ?| ? ?2 +- ?drivers/regulator/mc13783-regulator.c ?| ? ?2 +- ?drivers/regulator/mc13892-regulator.c ?| ? ?2 +- ?drivers/regulator/pcap-regulator.c ? ? | ? ?2 +- ?drivers/regulator/pcf50633-regulator.c | ? ?2 +- ?drivers/regulator/tps6105x-regulator.c | ? ?3 ++- ?drivers/regulator/tps65023-regulator.c | ? ?2 +- ?drivers/regulator/tps6507x-regulator.c | ? ?2 +- ?drivers/regulator/tps6524x-regulator.c | ? ?2 +- ?drivers/regulator/tps6586x-regulator.c | ? ?2 +- ?drivers/regulator/tps65910-regulator.c | ? ?2 +- ?drivers/regulator/tps65912-regulator.c | ? ?2 +- ?drivers/regulator/twl-regulator.c ? ? ?| ? ?2 +- ?drivers/regulator/wm831x-dcdc.c ? ? ? ?| ? ?8 ++++---- ?drivers/regulator/wm831x-isink.c ? ? ? | ? ?2 +- ?drivers/regulator/wm831x-ldo.c ? ? ? ? | ? ?6 +++--- ?drivers/regulator/wm8350-regulator.c ? | ? ?2 +- ?drivers/regulator/wm8400-regulator.c ? | ? ?2 +- ?drivers/regulator/wm8994-regulator.c ? | ? ?2 +- ?include/linux/regulator/driver.h ? ? ? | ? ?2 +- ?sound/soc/codecs/sgtl5000.c ? ? ? ? ? ?| ? ?2 +- ?41 files changed, 48 insertions(+), 46 deletions(-)
Documentation/power/regulator/regulator.txt would also require an update the reflect the change in api. Thanks, Thomas. [...]