]> Pileus Git - ~andy/linux/commitdiff
mfd: Fix palmas regulator pdata missing
authorGraeme Gregory <gg@slimlogic.co.uk>
Fri, 22 Jun 2012 12:36:18 +0000 (13:36 +0100)
committerSamuel Ortiz <sameo@linux.intel.com>
Sun, 8 Jul 2012 22:16:25 +0000 (00:16 +0200)
Due to a merge error the section of code passing the pdata for the
regulator driver to the mfd_add_devices via the children structure
was missing. This corrects this problem.

Signed-off-by: Graeme Gregory <gg@slimlogic.co.uk>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/mfd/palmas.c

index 5d896b3522849bc81572667eb91a6f035450bb6f..98fdcdbbd610bcfaae98aaef8f8cecc7f942e22e 100644 (file)
@@ -441,6 +441,9 @@ static int __devinit palmas_i2c_probe(struct i2c_client *i2c,
                goto err;
        }
 
+       children[PALMAS_PMIC_ID].platform_data = pdata->pmic_pdata;
+       children[PALMAS_PMIC_ID].pdata_size = sizeof(*pdata->pmic_pdata);
+
        ret = mfd_add_devices(palmas->dev, -1,
                              children, ARRAY_SIZE(palmas_children),
                              NULL, regmap_irq_chip_get_base(palmas->irq_data));