[PATCH] regulator: palmas: Fix a typo that causes build error

From: Axel Lin
Date: Mon May 21 2012 - 11:31:18 EST


CC [M] drivers/regulator/palmas-regulator.o
drivers/regulator/palmas-regulator.c:409:48: error: expected '}' before ';' token
make[2]: *** [drivers/regulator/palmas-regulator.o] Error 1
make[1]: *** [drivers/regulator] Error 2
make: *** [drivers] Error 2

Signed-off-by: Axel Lin <axel.lin@xxxxxxxxx>
---
Just found a typo in my previous patch. Sorry about that.

Axel
drivers/regulator/palmas-regulator.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/regulator/palmas-regulator.c b/drivers/regulator/palmas-regulator.c
index 4fd8333..92f475c 100644
--- a/drivers/regulator/palmas-regulator.c
+++ b/drivers/regulator/palmas-regulator.c
@@ -406,8 +406,8 @@ static struct regulator_ops palmas_ops_smps10 = {
.disable = regulator_disable_regmap,
.get_voltage_sel = regulator_get_voltage_sel_regmap,
.set_voltage_sel = regulator_set_voltage_sel_regmap,
- .list_voltage = regulator_list_voltage_linear;
- .map_voltage = regulator_map_voltage_linear;
+ .list_voltage = regulator_list_voltage_linear,
+ .map_voltage = regulator_map_voltage_linear,
};

static int palmas_is_enabled_ldo(struct regulator_dev *dev)
--
1.7.5.4



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/