diff options
author | Andres Salomon <dilinger@queued.net> | 2011-02-17 19:07:20 -0800 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-03-23 10:41:54 +0100 |
commit | 0638d56fbb6cf8367fcf01a1febf6a191b0e0704 (patch) | |
tree | e2af7c684550df22c6dce4b3a00bd64a3a24806d /drivers/mfd | |
parent | 7d76ac15ad1a8d8b1a7b7b4f6be7a9d8dfd225bf (diff) | |
download | op-kernel-dev-0638d56fbb6cf8367fcf01a1febf6a191b0e0704.zip op-kernel-dev-0638d56fbb6cf8367fcf01a1febf6a191b0e0704.tar.gz |
mfd: mfd_cell is now implicitly available to twl4030 drivers
The cell's platform_data is now accessed with a helper function;
change clients to use that, and remove the now-unused data_size.
Signed-off-by: Andres Salomon <dilinger@queued.net>
Acked-by: Peter Ujfalusi <peter.ujfalusi@nokia.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/twl4030-codec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mfd/twl4030-codec.c b/drivers/mfd/twl4030-codec.c index 9a4b196..0f57426 100644 --- a/drivers/mfd/twl4030-codec.c +++ b/drivers/mfd/twl4030-codec.c @@ -209,14 +209,12 @@ static int __devinit twl4030_codec_probe(struct platform_device *pdev) cell = &codec->cells[childs]; cell->name = "twl4030-codec"; cell->platform_data = pdata->audio; - cell->data_size = sizeof(*pdata->audio); childs++; } if (pdata->vibra) { cell = &codec->cells[childs]; cell->name = "twl4030-vibra"; cell->platform_data = pdata->vibra; - cell->data_size = sizeof(*pdata->vibra); childs++; } |