[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-id: <1293093839-23994-1-git-send-email-myungjoo.ham@samsung.com>
Date: Thu, 23 Dec 2010 17:43:59 +0900
From: MyungJoo Ham <myungjoo.ham@...sung.com>
To: linux-kernel@...r.kernel.org
Cc: Liam Girdwood <lrg@...mlogic.co.uk>,
Mark Brown <broonie@...nsource.wolfsonmicro.com>,
kyungmin.park@...sung.com, myungjoo.ham@...il.com
Subject: [PATCH] regulator MAX8998/LP3974 Bugfix: incorrect variable name (typo)
trivial error. (buck1_idx->buck2_idx in the context of buck2 control)
Signed-off-by: MyungJoo Ham <myungjoo.ham@...sung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@...sung.com>
---
drivers/regulator/max8998.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/regulator/max8998.c b/drivers/regulator/max8998.c
index 5c20756..6413e80 100644
--- a/drivers/regulator/max8998.c
+++ b/drivers/regulator/max8998.c
@@ -448,10 +448,10 @@ buck1_exit:
, i, max8998->buck2_vol[0], max8998->buck2_vol[1]);
if (gpio_is_valid(pdata->buck2_set3)) {
if (max8998->buck2_vol[0] == i) {
- max8998->buck1_idx = 0;
+ max8998->buck2_idx = 0;
buck2_gpio_set(pdata->buck2_set3, 0);
} else {
- max8998->buck1_idx = 1;
+ max8998->buck2_idx = 1;
ret = max8998_get_voltage_register(rdev, ®,
&shift,
&mask);
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists