aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/max8925-core.c
diff options
context:
space:
mode:
authorHaojian Zhuang <haojian.zhuang@marvell.com>2011-05-06 05:21:25 -0400
committerSamuel Ortiz <sameo@linux.intel.com>2011-05-26 13:45:37 -0400
commitebf9988ecad6727e5ae950fc2c72b963a1bfc0fe (patch)
treee9dc9e5b394c181c9e484a9509c3ba88223cb91d /drivers/mfd/max8925-core.c
parentcea438dda618797922d0bfc4814e832bab19ac19 (diff)
mfd: Remove checking on max8925 regulator[0]
Since regulator[0] is always checking in mfd driver, it results in registration failure without regulator[0]. Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com> Reviewed-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/max8925-core.c')
-rw-r--r--drivers/mfd/max8925-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/max8925-core.c b/drivers/mfd/max8925-core.c
index 58cc5fdde01..e1e59c92f75 100644
--- a/drivers/mfd/max8925-core.c
+++ b/drivers/mfd/max8925-core.c
@@ -627,7 +627,7 @@ int __devinit max8925_device_init(struct max8925_chip *chip,
627 goto out_dev; 627 goto out_dev;
628 } 628 }
629 629
630 if (pdata && pdata->regulator[0]) { 630 if (pdata) {
631 ret = mfd_add_devices(chip->dev, 0, &regulator_devs[0], 631 ret = mfd_add_devices(chip->dev, 0, &regulator_devs[0],
632 ARRAY_SIZE(regulator_devs), 632 ARRAY_SIZE(regulator_devs),
633 &regulator_resources[0], 0); 633 &regulator_resources[0], 0);