diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-10-14 13:36:04 +0100 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-10-14 20:59:30 +0100 |
commit | 0151546fb34e92494acd65ed84a603c2a4a90168 (patch) | |
tree | 484fb8a2dbe4d54154d7ae2d34c869071efeb310 /include/linux/regulator/machine.h | |
parent | d1685e4e2c3854782272f32b71f2f3eff5c6e0d0 (diff) | |
download | blackbird-obmc-linux-0151546fb34e92494acd65ed84a603c2a4a90168.tar.gz blackbird-obmc-linux-0151546fb34e92494acd65ed84a603c2a4a90168.zip |
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/machine.h')
-rw-r--r-- | include/linux/regulator/machine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/regulator/machine.h b/include/linux/regulator/machine.h index ce3127a75c88..f3f13fd5868f 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; |