aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/max8925-regulator.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2013-02-15 07:36:06 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2013-03-03 21:49:21 -0500
commitad4928f1dc695ea822c4daaafa5e3b2db7b17964 (patch)
tree82c293d8cb2c310d2cdeb352fcb530b2ac08f602 /drivers/regulator/max8925-regulator.c
parent6dbe51c251a327e012439c4772097a13df43c5b8 (diff)
regulator: max8925: Remove unused parameter from max8925_regulator_dt_init
The info parameter is not used at all, remove it. Signed-off-by: Axel Lin <axel.lin@ingics.com> Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/max8925-regulator.c')
-rw-r--r--drivers/regulator/max8925-regulator.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/regulator/max8925-regulator.c b/drivers/regulator/max8925-regulator.c
index 0d5f64a805a0..3597da8f0dca 100644
--- a/drivers/regulator/max8925-regulator.c
+++ b/drivers/regulator/max8925-regulator.c
@@ -246,7 +246,6 @@ static struct max8925_regulator_info max8925_regulator_info[] = {
246 246
247#ifdef CONFIG_OF 247#ifdef CONFIG_OF
248static int max8925_regulator_dt_init(struct platform_device *pdev, 248static int max8925_regulator_dt_init(struct platform_device *pdev,
249 struct max8925_regulator_info *info,
250 struct regulator_config *config, 249 struct regulator_config *config,
251 int ridx) 250 int ridx)
252{ 251{
@@ -272,7 +271,7 @@ static int max8925_regulator_dt_init(struct platform_device *pdev,
272 return 0; 271 return 0;
273} 272}
274#else 273#else
275#define max8925_regulator_dt_init(w, x, y, z) (-1) 274#define max8925_regulator_dt_init(x, y, z) (-1)
276#endif 275#endif
277 276
278static int max8925_regulator_probe(struct platform_device *pdev) 277static int max8925_regulator_probe(struct platform_device *pdev)
@@ -309,7 +308,7 @@ static int max8925_regulator_probe(struct platform_device *pdev)
309 config.dev = &pdev->dev; 308 config.dev = &pdev->dev;
310 config.driver_data = ri; 309 config.driver_data = ri;
311 310
312 if (max8925_regulator_dt_init(pdev, ri, &config, regulator_idx)) 311 if (max8925_regulator_dt_init(pdev, &config, regulator_idx))
313 if (pdata) 312 if (pdata)
314 config.init_data = pdata; 313 config.init_data = pdata;
315 314