projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7c1518
)
regulator: cros-ec: Constify cros_ec_regulator_voltage_ops
author
Rikard Falkeborn
<rikard.falkeborn@gmail.com>
Sat, 11 Jul 2020 11:44:09 +0000
(13:44 +0200)
committer
Mark Brown
<broonie@kernel.org>
Mon, 13 Jul 2020 17:08:41 +0000
(18:08 +0100)
It is never modified, so make it const to allow the compiler to put it
in read-only memory.
Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Acked-by: Pi-Hsun Shih <pihsun@chromium.org>
Link:
https://lore.kernel.org/r/20200711114409.9911-1-rikard.falkeborn@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/cros-ec-regulator.c
patch
|
blob
|
history
diff --git
a/drivers/regulator/cros-ec-regulator.c
b/drivers/regulator/cros-ec-regulator.c
index 35f97246bc481b6eabd7f30186ecabf7b274e51e..eeed5aac3f3228f218e105bc37e9d91c3e571d39 100644
(file)
--- a/
drivers/regulator/cros-ec-regulator.c
+++ b/
drivers/regulator/cros-ec-regulator.c
@@
-142,7
+142,7
@@
static int cros_ec_regulator_set_voltage(struct regulator_dev *dev, int min_uV,
sizeof(cmd), NULL, 0);
}
-static struct regulator_ops cros_ec_regulator_voltage_ops = {
+static
const
struct regulator_ops cros_ec_regulator_voltage_ops = {
.enable = cros_ec_regulator_enable,
.disable = cros_ec_regulator_disable,
.is_enabled = cros_ec_regulator_is_enabled,