aboutsummaryrefslogtreecommitdiff
path: root/include/linux/regulator
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2011-10-14 13:36:04 +0100
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-10-14 20:59:30 +0100
commit0151546fb34e92494acd65ed84a603c2a4a90168 (patch)
tree484fb8a2dbe4d54154d7ae2d34c869071efeb310 /include/linux/regulator
parentd1685e4e2c3854782272f32b71f2f3eff5c6e0d0 (diff)
regulator: Constify constraints name
There's no need for the API to modify it and having it const makes it easier to use with random strings the board code has. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include/linux/regulator')
-rw-r--r--include/linux/regulator/machine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/regulator/machine.h b/include/linux/regulator/machine.h
index ce3127a75c8..f3f13fd5868 100644
--- a/include/linux/regulator/machine.h
+++ b/include/linux/regulator/machine.h
@@ -95,7 +95,7 @@ struct regulator_state {
*/
struct regulation_constraints {
- char *name;
+ const char *name;
/* voltage output range (inclusive) - for voltage control */
int min_uV;