diff options
author | Mark Brown | 2011-10-14 14:36:04 +0200 |
---|---|---|
committer | Mark Brown | 2011-10-14 21:59:30 +0200 |
commit | 0151546fb34e92494acd65ed84a603c2a4a90168 (patch) | |
tree | 484fb8a2dbe4d54154d7ae2d34c869071efeb310 /include/linux/regulator | |
parent | regulator: Fix possible nullpointer dereference in regulator_enable() (diff) | |
download | kernel-qcow2-linux-0151546fb34e92494acd65ed84a603c2a4a90168.tar.gz kernel-qcow2-linux-0151546fb34e92494acd65ed84a603c2a4a90168.tar.xz kernel-qcow2-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')
-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; |