Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1568918 > unrolled thread

[PATCH] regulator: gpio-regulator: constify regulator_ops structure

Started byBhumika Goyal <bhumirks@gmail.com>
First post2017-01-28 15:10 +0100
Last post2017-01-28 15:10 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] regulator: gpio-regulator: constify regulator_ops structure Bhumika Goyal <bhumirks@gmail.com> - 2017-01-28 15:10 +0100

#1568918 — [PATCH] regulator: gpio-regulator: constify regulator_ops structure

FromBhumika Goyal <bhumirks@gmail.com>
Date2017-01-28 15:10 +0100
Subject[PATCH] regulator: gpio-regulator: constify regulator_ops structure
Message-ID<t4BRv-2tt-11@gated-at.bofh.it>
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/gpio-regulator.o
   text	   data	    bss	    dec	    hex	filename
   3273	    720	      0	   3993	    f99 regulator/gpio-regulator.o

File size after: drivers/regulator/gpio-regulator.o
   text	   data	    bss	    dec	    hex	filename
   3801	    192	      0	   3993	    f99 regulator/gpio-regulator.o

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
---
 drivers/regulator/gpio-regulator.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/regulator/gpio-regulator.c b/drivers/regulator/gpio-regulator.c
index 0fce06a..3f9a3ec 100644
--- a/drivers/regulator/gpio-regulator.c
+++ b/drivers/regulator/gpio-regulator.c
@@ -126,7 +126,7 @@ static int gpio_regulator_set_current_limit(struct regulator_dev *dev,
 	return 0;
 }
 
-static struct regulator_ops gpio_regulator_voltage_ops = {
+static const struct regulator_ops gpio_regulator_voltage_ops = {
 	.get_voltage = gpio_regulator_get_value,
 	.set_voltage = gpio_regulator_set_voltage,
 	.list_voltage = gpio_regulator_list_voltage,
@@ -243,7 +243,7 @@ static int gpio_regulator_set_current_limit(struct regulator_dev *dev,
 	return config;
 }
 
-static struct regulator_ops gpio_regulator_current_ops = {
+static const struct regulator_ops gpio_regulator_current_ops = {
 	.get_current_limit = gpio_regulator_get_value,
 	.set_current_limit = gpio_regulator_set_current_limit,
 };
-- 
1.9.1

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web