diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-04-06 08:26:06 +0800 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-06 10:07:11 +0100 |
commit | 09de3473c7724d7a1db7596acc2ce411e5e72f63 (patch) | |
tree | 128cf2b46813096c666ac3f662bb526285042765 /drivers/regulator/max8649.c | |
parent | 0373bcff46c444d71bbff424d1060b550bab28ec (diff) | |
download | talos-op-linux-09de3473c7724d7a1db7596acc2ce411e5e72f63.tar.gz talos-op-linux-09de3473c7724d7a1db7596acc2ce411e5e72f63.zip |
regulator: max8649: Constify regulator_desc
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/max8649.c')
-rw-r--r-- | drivers/regulator/max8649.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/max8649.c b/drivers/regulator/max8649.c index 824c650436ed..aa91ec60fa08 100644 --- a/drivers/regulator/max8649.c +++ b/drivers/regulator/max8649.c @@ -207,7 +207,7 @@ static struct regulator_ops max8649_dcdc_ops = { }; -static struct regulator_desc dcdc_desc = { +static const struct regulator_desc dcdc_desc = { .name = "max8649", .ops = &max8649_dcdc_ops, .type = REGULATOR_VOLTAGE, |