linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] regulator: max8925: fix compiler warnings
@ 2012-11-22  2:11 Qing Xu
  2012-11-23  1:41 ` Mark Brown
  0 siblings, 1 reply; 5+ messages in thread
From: Qing Xu @ 2012-11-22  2:11 UTC (permalink / raw)
  To: qingx, broonie, lrg, haojian.zhuang, cxie4, linux-kernel

From: Qing Xu <qingx@marvell.com>

Fixed following compiler warning:

- drivers/regulator/max8925-regulator.c:269:51: warning:
  'regulator_idx' may be used uninitialized in this function
  [-Wmaybe-uninitialized]

Signed-off-by: Qing Xu <qingx@marvell.com>
---
 drivers/regulator/max8925-regulator.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/regulator/max8925-regulator.c b/drivers/regulator/max8925-regulator.c
index 2b54979..187b29b 100644
--- a/drivers/regulator/max8925-regulator.c
+++ b/drivers/regulator/max8925-regulator.c
@@ -282,7 +282,8 @@ static int __devinit max8925_regulator_probe(struct platform_device *pdev)
 	struct max8925_regulator_info *ri;
 	struct resource *res;
 	struct regulator_dev *rdev;
-	int i, regulator_idx;
+	int i;
+	int regulator_idx = 0;
 
 	res = platform_get_resource(pdev, IORESOURCE_REG, 0);
 	if (!res) {
-- 
1.7.0.4


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

end of thread, other threads:[~2012-11-26  3:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-22  2:11 [PATCH] regulator: max8925: fix compiler warnings Qing Xu
2012-11-23  1:41 ` Mark Brown
2012-11-23  2:27   ` Qing Xu
2012-11-24 17:55     ` Mark Brown
2012-11-26  3:07       ` Qing Xu

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).