diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2009-10-08 19:03:59 +0200 |
---|---|---|
committer | Lars-Peter Clausen <lars@metafoo.de> | 2009-10-09 10:49:58 +0200 |
commit | 0231c22f5955bbe72c88815f119198c734149e00 (patch) | |
tree | 6c8f999bc725c22a512102dea9bc47984d4e1fcb | |
parent | f9745d7f9cca30230a827f2170cf038a368f9992 (diff) |
mfd: pcf50633: Use platform_device_add_data to set regulator platform data
Platform devices allocated with platform_device_alloc should use
platform_device_add_data to set the platform data, because kfree will be called
on the platform_data when the device is released.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
-rw-r--r-- | drivers/mfd/pcf50633-core.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mfd/pcf50633-core.c b/drivers/mfd/pcf50633-core.c index ea226dbd598..7d35282d6da 100644 --- a/drivers/mfd/pcf50633-core.c +++ b/drivers/mfd/pcf50633-core.c @@ -630,7 +630,8 @@ static int __devinit pcf50633_probe(struct i2c_client *client, } pdev->dev.parent = pcf->dev; - pdev->dev.platform_data = &pdata->reg_init_data[i]; + platform_device_add_data(pdev, &pdata->reg_init_data[i], + sizeof(pdata->reg_init_data[i])); dev_set_drvdata(&pdev->dev, pcf); pcf->regulator_pdev[i] = pdev; |