lkml.org 
[lkml]   [2008]   [Feb]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 2/6] regulator: regulator driver interface.
On Wed, 20 Feb 2008 17:09:00 +0000 Liam Girdwood <lg@opensource.wolfsonmicro.com> wrote:

> This interface allows regulator drivers to register their voltage and current
> regulators with the core. It also has a notifier call chain for propagating
> regulator events to clients.
>
> +
> +/**
> + * struct regulator_ops - regulator operations.
> + *
> + * This struct describes regulator operations.
> + */

You can actually document the struct's fields in the kerneldoc comment
here, although I tend to think that it's better to document them as you
have done - ther eis more room, and people are more likely to remember to
update the comments when adding/removing/modifying fields.

> +struct regulator_ops {
> +
> + /* get/set regulator voltage */
> + int (*set_voltage)(struct regulator_cdev *, int uV);
> + int (*get_voltage)(struct regulator_cdev *);
> +
> + /* get/set regulator current */
> + int (*set_current)(struct regulator_cdev *, int uA);
> + int (*get_current)(struct regulator_cdev *);
> +
> + /* enable/disable regulator */
> + int (*enable)(struct regulator_cdev *);
> + int (*disable)(struct regulator_cdev *);
> + int (*is_enabled)(struct regulator_cdev *);
> +
> + /* get/set regulator operating mode (defined in regulator.h) */
> + int (*set_mode)(struct regulator_cdev *, unsigned int mode);
> + unsigned int (*get_mode)(struct regulator_cdev *);
> +
> + /* get most efficient regulator operating mode for load */
> + unsigned int (*get_optimum_mode)(struct regulator_cdev *, int input_uV,
> + int output_uV, int load_uA);
> +};
>
> ...
>
> +/**
> + * regulator_get_drvdata - get regulator driver data
> + * @regulator: regulator
> + */
> +void *rcdev_get_drvdata (struct regulator_cdev *rcdev);
> +
> +/**
> + * regulator_get_id - get regulator ID
> + * @regulator: regulator
> + */
> +int rcdev_get_id (struct regulator_cdev *rcdev);

Please use scripts/checkpatch.pl...


\
 
 \ /
  Last update: 2008-02-23 09:25    [W:0.037 / U:0.140 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site