aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power
diff options
context:
space:
mode:
authorAndres Salomon <dilinger@queued.net>2011-02-17 19:07:10 -0800
committerSamuel Ortiz <sameo@linux.intel.com>2011-03-23 10:41:50 +0100
commit6a54ac2149ab5b8972bb4f77bd42b43dbeabb56f (patch)
treea9a26ba9630e8a341d80c12821b97369a44716b8 /drivers/power
parentmfd-core: Unconditionally add mfd_cell to every platform_device (diff)
downloadlinux-dev-6a54ac2149ab5b8972bb4f77bd42b43dbeabb56f.tar.xz
linux-dev-6a54ac2149ab5b8972bb4f77bd42b43dbeabb56f.zip
mfd: mfd_cell is now implicitly available to jz4740 drivers
No need to explicitly set the cell's platform_data/data_size. Modify clients to use mfd_get_cell helper function instead of accessing platform_data directly. Signed-off-by: Andres Salomon <dilinger@queued.net> Acked-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/power')
-rw-r--r--drivers/power/jz4740-battery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/jz4740-battery.c b/drivers/power/jz4740-battery.c
index 02414db6a94c..0938650a466c 100644
--- a/drivers/power/jz4740-battery.c
+++ b/drivers/power/jz4740-battery.c
@@ -258,7 +258,7 @@ static int __devinit jz_battery_probe(struct platform_device *pdev)
return -ENOMEM;
}
- jz_battery->cell = pdev->dev.platform_data;
+ jz_battery->cell = mfd_get_cell(pdev);
jz_battery->irq = platform_get_irq(pdev, 0);
if (jz_battery->irq < 0) {