Commit fde297bb authored by Kim, Milo's avatar Kim, Milo Committed by Mark Brown

regulator: fix wrong header name in description

The 'mode' is defined in consumer.h.

* patch base version : linux-3.2.4
Signed-off-by: default avatarMilo(Woogyom) Kim <milo.kim@ti.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 4a682922
...@@ -104,7 +104,7 @@ struct regulator_ops { ...@@ -104,7 +104,7 @@ struct regulator_ops {
int (*disable) (struct regulator_dev *); int (*disable) (struct regulator_dev *);
int (*is_enabled) (struct regulator_dev *); int (*is_enabled) (struct regulator_dev *);
/* get/set regulator operating mode (defined in regulator.h) */ /* get/set regulator operating mode (defined in consumer.h) */
int (*set_mode) (struct regulator_dev *, unsigned int mode); int (*set_mode) (struct regulator_dev *, unsigned int mode);
unsigned int (*get_mode) (struct regulator_dev *); unsigned int (*get_mode) (struct regulator_dev *);
...@@ -135,7 +135,7 @@ struct regulator_ops { ...@@ -135,7 +135,7 @@ struct regulator_ops {
int (*set_suspend_enable) (struct regulator_dev *); int (*set_suspend_enable) (struct regulator_dev *);
int (*set_suspend_disable) (struct regulator_dev *); int (*set_suspend_disable) (struct regulator_dev *);
/* set regulator suspend operating mode (defined in regulator.h) */ /* set regulator suspend operating mode (defined in consumer.h) */
int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode); int (*set_suspend_mode) (struct regulator_dev *, unsigned int mode);
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment