Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

regulator: pv88060-regulator: constify regulator_ops structure

Declare regulator_ops structure as const as it is only stored in the ops
field of a regulator_desc structure. This field is of type const, so
regulator_ops structures having this property can be made const too.

File size before: drivers/regulator/pv88060-regulator.o
text data bss dec hex filename
6195 752 8 6955 1b2b regulator/pv88060-regulator.o

File size after: drivers/regulator/pv88060-regulator.o
text data bss dec hex filename
6739 240 8 6987 1b4b regulator/pv88060-regulator.o

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Bhumika Goyal and committed by
Mark Brown
ea51874c d00b7461

+2 -2
+2 -2
drivers/regulator/pv88060-regulator.c
··· 162 162 return info->current_limits[data]; 163 163 } 164 164 165 - static struct regulator_ops pv88060_buck_ops = { 165 + static const struct regulator_ops pv88060_buck_ops = { 166 166 .get_mode = pv88060_buck_get_mode, 167 167 .set_mode = pv88060_buck_set_mode, 168 168 .enable = regulator_enable_regmap, ··· 175 175 .get_current_limit = pv88060_get_current_limit, 176 176 }; 177 177 178 - static struct regulator_ops pv88060_ldo_ops = { 178 + static const struct regulator_ops pv88060_ldo_ops = { 179 179 .enable = regulator_enable_regmap, 180 180 .disable = regulator_disable_regmap, 181 181 .is_enabled = regulator_is_enabled_regmap,