aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/regulator/machine.h
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/machine.h
parentregulator: Fix possible nullpointer dereference in regulator_enable() (diff)
downloadlinux-dev-0151546fb34e92494acd65ed84a603c2a4a90168.tar.xz
linux-dev-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.h2
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;