diff options
author | Mark Brown <broonie@linaro.org> | 2014-07-09 04:28:49 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-09 04:28:49 -0400 |
commit | e60781b4eb4849ae02f2f103acbde873a2ee55c9 (patch) | |
tree | a73d51f20b37f809880cc8fe7f2163570c01d3a3 /drivers/regulator | |
parent | 5f986f7c2b878142f80cc23391631a71772692a8 (diff) | |
parent | 42ab0f3915f22728f54bb1f3c0dcf38ab2335b5b (diff) |
Merge remote-tracking branch 'regulator/fix/tps65218' into regulator-tps65218
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/tps65218-regulator.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/regulator/tps65218-regulator.c b/drivers/regulator/tps65218-regulator.c index 8b24404be0bd..f56bc06389e4 100644 --- a/drivers/regulator/tps65218-regulator.c +++ b/drivers/regulator/tps65218-regulator.c | |||
@@ -68,7 +68,7 @@ static const struct regulator_linear_range ldo1_dcdc3_ranges[] = { | |||
68 | 68 | ||
69 | static const struct regulator_linear_range dcdc4_ranges[] = { | 69 | static const struct regulator_linear_range dcdc4_ranges[] = { |
70 | REGULATOR_LINEAR_RANGE(1175000, 0x0, 0xf, 25000), | 70 | REGULATOR_LINEAR_RANGE(1175000, 0x0, 0xf, 25000), |
71 | REGULATOR_LINEAR_RANGE(1550000, 0x10, 0x34, 50000), | 71 | REGULATOR_LINEAR_RANGE(1600000, 0x10, 0x34, 50000), |
72 | }; | 72 | }; |
73 | 73 | ||
74 | static struct tps_info tps65218_pmic_regs[] = { | 74 | static struct tps_info tps65218_pmic_regs[] = { |
@@ -209,7 +209,7 @@ static const struct regulator_desc regulators[] = { | |||
209 | 1, -1, -1, TPS65218_REG_ENABLE1, | 209 | 1, -1, -1, TPS65218_REG_ENABLE1, |
210 | TPS65218_ENABLE1_DC6_EN, NULL, NULL, 0, 0), | 210 | TPS65218_ENABLE1_DC6_EN, NULL, NULL, 0, 0), |
211 | TPS65218_REGULATOR("LDO1", TPS65218_LDO_1, tps65218_ldo1_dcdc34_ops, 64, | 211 | TPS65218_REGULATOR("LDO1", TPS65218_LDO_1, tps65218_ldo1_dcdc34_ops, 64, |
212 | TPS65218_REG_CONTROL_DCDC4, | 212 | TPS65218_REG_CONTROL_LDO1, |
213 | TPS65218_CONTROL_LDO1_MASK, TPS65218_REG_ENABLE2, | 213 | TPS65218_CONTROL_LDO1_MASK, TPS65218_REG_ENABLE2, |
214 | TPS65218_ENABLE2_LDO1_EN, NULL, ldo1_dcdc3_ranges, | 214 | TPS65218_ENABLE2_LDO1_EN, NULL, ldo1_dcdc3_ranges, |
215 | 2, 0), | 215 | 2, 0), |
@@ -240,6 +240,7 @@ static int tps65218_regulator_probe(struct platform_device *pdev) | |||
240 | config.init_data = init_data; | 240 | config.init_data = init_data; |
241 | config.driver_data = tps; | 241 | config.driver_data = tps; |
242 | config.regmap = tps->regmap; | 242 | config.regmap = tps->regmap; |
243 | config.of_node = pdev->dev.of_node; | ||
243 | 244 | ||
244 | rdev = devm_regulator_register(&pdev->dev, ®ulators[id], &config); | 245 | rdev = devm_regulator_register(&pdev->dev, ®ulators[id], &config); |
245 | if (IS_ERR(rdev)) { | 246 | if (IS_ERR(rdev)) { |