Skip to content

Commit

Permalink
regulator: Fix some kerneldoc rendering issues
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Mark Brown authored and Liam Girdwood committed Jan 8, 2009
1 parent c8e7e46 commit cf7bbcd
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions drivers/regulator/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1012,10 +1012,12 @@ static int _regulator_enable(struct regulator_dev *rdev)
* regulator_enable - enable regulator output
* @regulator: regulator source
*
* Enable the regulator output at the predefined voltage or current value.
* Request that the regulator be enabled with the regulator output at
* the predefined voltage or current value. Calls to regulator_enable()
* must be balanced with calls to regulator_disable().
*
* NOTE: the output value can be set by other drivers, boot loader or may be
* hardwired in the regulator. Calls to regulator_enable() must be balanced
* with calls to regulator_disable().
* hardwired in the regulator.
*/
int regulator_enable(struct regulator *regulator)
{
Expand Down Expand Up @@ -1073,11 +1075,13 @@ static int _regulator_disable(struct regulator_dev *rdev)
* regulator_disable - disable regulator output
* @regulator: regulator source
*
* Disable the regulator output voltage or current.
* Disable the regulator output voltage or current. Calls to
* regulator_enable() must be balanced with calls to
* regulator_disable().
*
* NOTE: this will only disable the regulator output if no other consumer
* devices have it enabled. Calls to regulator_enable() must be balanced with
* calls to regulator_disable().
* devices have it enabled, the regulator device supports disabling and
* machine constraints permit this operation.
*/
int regulator_disable(struct regulator *regulator)
{
Expand Down Expand Up @@ -1936,7 +1940,7 @@ void regulator_unregister(struct regulator_dev *rdev)
EXPORT_SYMBOL_GPL(regulator_unregister);

/**
* regulator_suspend_prepare: prepare regulators for system wide suspend
* regulator_suspend_prepare - prepare regulators for system wide suspend
* @state: system suspend state
*
* Configure each regulator with it's suspend operating parameters for state.
Expand Down

0 comments on commit cf7bbcd

Please sign in to comment.