aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/core.c
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2008-12-31 07:52:43 -0500
committerLiam Girdwood <lrg@slimlogic.co.uk>2009-01-08 15:10:33 -0500
commitcf7bbcdf4d267eff580cb7ce6cf4fe16a940a005 (patch)
tree3cce1990db419c191c7a52f6b638aac57ac1632f /drivers/regulator/core.c
parentc8e7e4640facbe99d10a6e262523b25be129b9b9 (diff)
regulator: Fix some kerneldoc rendering issues
There are some minor textual changes in here as well, mostly to enable() and disable() but the primary goal of these changes is to fix misrenderings of the kerneldoc documentation for the regulator API. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'drivers/regulator/core.c')
-rw-r--r--drivers/regulator/core.c18
1 files changed, 11 insertions, 7 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index fda44009024d..7341c97cd916 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -1012,10 +1012,12 @@ static int _regulator_enable(struct regulator_dev *rdev)
1012 * regulator_enable - enable regulator output 1012 * regulator_enable - enable regulator output
1013 * @regulator: regulator source 1013 * @regulator: regulator source
1014 * 1014 *
1015 * Enable the regulator output at the predefined voltage or current value. 1015 * Request that the regulator be enabled with the regulator output at
1016 * the predefined voltage or current value. Calls to regulator_enable()
1017 * must be balanced with calls to regulator_disable().
1018 *
1016 * NOTE: the output value can be set by other drivers, boot loader or may be 1019 * NOTE: the output value can be set by other drivers, boot loader or may be
1017 * hardwired in the regulator. Calls to regulator_enable() must be balanced 1020 * hardwired in the regulator.
1018 * with calls to regulator_disable().
1019 */ 1021 */
1020int regulator_enable(struct regulator *regulator) 1022int regulator_enable(struct regulator *regulator)
1021{ 1023{
@@ -1073,11 +1075,13 @@ static int _regulator_disable(struct regulator_dev *rdev)
1073 * regulator_disable - disable regulator output 1075 * regulator_disable - disable regulator output
1074 * @regulator: regulator source 1076 * @regulator: regulator source
1075 * 1077 *
1076 * Disable the regulator output voltage or current. 1078 * Disable the regulator output voltage or current. Calls to
1079 * regulator_enable() must be balanced with calls to
1080 * regulator_disable().
1077 * 1081 *
1078 * NOTE: this will only disable the regulator output if no other consumer 1082 * NOTE: this will only disable the regulator output if no other consumer
1079 * devices have it enabled. Calls to regulator_enable() must be balanced with 1083 * devices have it enabled, the regulator device supports disabling and
1080 * calls to regulator_disable(). 1084 * machine constraints permit this operation.
1081 */ 1085 */
1082int regulator_disable(struct regulator *regulator) 1086int regulator_disable(struct regulator *regulator)
1083{ 1087{
@@ -1936,7 +1940,7 @@ void regulator_unregister(struct regulator_dev *rdev)
1936EXPORT_SYMBOL_GPL(regulator_unregister); 1940EXPORT_SYMBOL_GPL(regulator_unregister);
1937 1941
1938/** 1942/**
1939 * regulator_suspend_prepare: prepare regulators for system wide suspend 1943 * regulator_suspend_prepare - prepare regulators for system wide suspend
1940 * @state: system suspend state 1944 * @state: system suspend state
1941 * 1945 *
1942 * Configure each regulator with it's suspend operating parameters for state. 1946 * Configure each regulator with it's suspend operating parameters for state.