public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] regulator: notify sysfs when voltage is set
@ 2012-03-15 12:04 Simon Horman
  2012-03-15 12:46 ` Mark Brown
  0 siblings, 1 reply; 5+ messages in thread
From: Simon Horman @ 2012-03-15 12:04 UTC (permalink / raw)
  To: Liam Girdwood, Mark Brown; +Cc: linux-kernel, Simon Horman

This allows libudev to be used to monitor voltage changes and thus allows
user-space code to avoid polling the sysfs entry for changes.

Signed-off-by: Simon Horman <horms@verge.net.au>
---
 drivers/regulator/core.c |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index b97c4a2..f3905b0 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -1783,6 +1783,19 @@ int regulator_is_supported_voltage(struct regulator *regulator,
 }
 EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
 
+static void regulator_generate_event(struct regulator_dev *rdev)
+{
+	char buf[32], *envp[2];
+
+	sprintf(buf, "MICROVOLTS=%d", _regulator_get_voltage(rdev));
+
+	envp[0] = buf;
+	envp[1] = NULL;
+
+	kobject_uevent_env(&rdev->dev.kobj, KOBJ_CHANGE, envp);
+	sysfs_notify(&rdev->dev.kobj, NULL, "microvolts");
+}
+
 static int _regulator_do_set_voltage(struct regulator_dev *rdev,
 				     int min_uV, int max_uV)
 {
@@ -1862,6 +1875,8 @@ static int _regulator_do_set_voltage(struct regulator_dev *rdev,
 		udelay(delay);
 	}
 
+	regulator_generate_event(rdev);
+
 	if (ret == 0)
 		_notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
 				     NULL);
-- 
1.7.6.3


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-03-15 23:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-15 12:04 [PATCH] regulator: notify sysfs when voltage is set Simon Horman
2012-03-15 12:46 ` Mark Brown
2012-03-15 14:26   ` Simon Horman
2012-03-15 14:47     ` Mark Brown
2012-03-15 23:23       ` Simon Horman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox