linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] regulator: hi6421: mark hi6421_regulator_ldo_get_optimum_mode() static
@ 2016-08-31  9:30 Baoyou Xie
  2016-08-31 10:01 ` Arnd Bergmann
  2016-09-01 20:35 ` Applied "regulator: hi6421: mark hi6421_regulator_ldo_get_optimum_mode() static" to the regulator tree Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Baoyou Xie @ 2016-08-31  9:30 UTC (permalink / raw)
  To: lgirdwood, broonie; +Cc: linux-kernel, arnd, baoyou.xie, xie.baoyou

We get 1 warning when building kernel with W=1:
drivers/regulator/hi6421-regulator.c:480:14: warning: no previous prototype for
'hi6421_regulator_ldo_get_optimum_mode' [-Wmissing-prototypes]

In fact, this function is only used in the file in which it is
declared and don't need a declaration, but can be made static.
So this patch marks it 'static'.

Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org>
---
 drivers/regulator/hi6421-regulator.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/regulator/hi6421-regulator.c b/drivers/regulator/hi6421-regulator.c
index 42dc5fb..62c5f54 100644
--- a/drivers/regulator/hi6421-regulator.c
+++ b/drivers/regulator/hi6421-regulator.c
@@ -477,7 +477,8 @@ static int hi6421_regulator_buck_set_mode(struct regulator_dev *rdev,
 	return 0;
 }
 
-unsigned int hi6421_regulator_ldo_get_optimum_mode(struct regulator_dev *rdev,
+static unsigned int
+hi6421_regulator_ldo_get_optimum_mode(struct regulator_dev *rdev,
 			int input_uV, int output_uV, int load_uA)
 {
 	struct hi6421_regulator_info *info = rdev_get_drvdata(rdev);
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-09-01 21:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-31  9:30 [PATCH] regulator: hi6421: mark hi6421_regulator_ldo_get_optimum_mode() static Baoyou Xie
2016-08-31 10:01 ` Arnd Bergmann
2016-09-01 20:35 ` Applied "regulator: hi6421: mark hi6421_regulator_ldo_get_optimum_mode() static" to the regulator tree Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).