diff options
author | Axel Lin <axel.lin@ingics.com> | 2019-01-26 11:39:07 +0800 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-01-28 12:21:34 +0000 |
commit | 23295d7980f7dce61f45da7fd14a19e37ef2eea1 (patch) | |
tree | 54dc810abef0788f7ba4a51d30e0d7dc0ab8ab8d | |
parent | b133305c51e977f5c64c9effd1b6533ae04095a0 (diff) |
regulator: lp8788-ldo: Constify lp8788_dldo_desc and lp8788_aldo_desc
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/regulator/lp8788-ldo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/lp8788-ldo.c b/drivers/regulator/lp8788-ldo.c index 2ee22e7ea675..a2ef146e6b3a 100644 --- a/drivers/regulator/lp8788-ldo.c +++ b/drivers/regulator/lp8788-ldo.c @@ -186,7 +186,7 @@ static const struct regulator_ops lp8788_ldo_voltage_fixed_ops = { .enable_time = lp8788_ldo_enable_time, }; -static struct regulator_desc lp8788_dldo_desc[] = { +static const struct regulator_desc lp8788_dldo_desc[] = { { .name = "dldo1", .id = DLDO1, @@ -343,7 +343,7 @@ static struct regulator_desc lp8788_dldo_desc[] = { }, }; -static struct regulator_desc lp8788_aldo_desc[] = { +static const struct regulator_desc lp8788_aldo_desc[] = { { .name = "aldo1", .id = ALDO1, |