summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Gregory <gg@slimlogic.co.uk>2012-06-22 12:36:18 (GMT)
committerSamuel Ortiz <sameo@linux.intel.com>2012-07-08 22:16:13 (GMT)
commit56dbd61f297d8d645856f604536bcd856ab9060a (patch)
tree4d56ab8ebc55bf6b3b8ded61d77b9d01b51fc6cb
parentdca1a71e4108a0a9051a653d885297e9d1cc656c (diff)
downloadlinux-fsl-qoriq-56dbd61f297d8d645856f604536bcd856ab9060a.tar.xz
mfd: Fix palmas regulator pdata missing
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>
-rw-r--r--drivers/mfd/palmas.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mfd/palmas.c b/drivers/mfd/palmas.c
index 5d896b3..98fdcdb 100644
--- a/drivers/mfd/palmas.c
+++ b/drivers/mfd/palmas.c
@@ -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));