aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAndres Salomon <dilinger@queued.net>2011-02-17 22:07:28 -0500
committerSamuel Ortiz <sameo@linux.intel.com>2011-03-23 05:41:56 -0400
commitfcd67979d3808afbe357048d928470ef9b37cd4b (patch)
tree82c9e45ff546c7f29bae0aaf554d34b5c3905e8c /drivers
parentdab1547a011b221308b6e991405677c78e1a8956 (diff)
w1: Use mfd_data instead of driver_data for dsw1wm.c
Use mfd_data for passing information from mfd drivers to mfd clients. The mfd_cell's driver_data field is being phased out. Clients that were using driver_data now access .mfd_data via mfd_get_data(). This changes ds1wm only; mfd drivers with other cells are not modified, with the exception of led_cell. The led_cell.driver_data line is dropped from htc-pasic3.c in this patch as well. It's not used in mainline (there's no leds-pasic3 platform driver), so it should be safe to take care of that here. Signed-off-by: Andres Salomon <dilinger@queued.net> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mfd/asic3.c2
-rw-r--r--drivers/mfd/htc-pasic3.c3
-rw-r--r--drivers/w1/masters/ds1wm.c4
3 files changed, 4 insertions, 5 deletions
diff --git a/drivers/mfd/asic3.c b/drivers/mfd/asic3.c
index bd97639cd83a..388938ce3c92 100644
--- a/drivers/mfd/asic3.c
+++ b/drivers/mfd/asic3.c
@@ -682,7 +682,7 @@ static struct mfd_cell asic3_cell_ds1wm = {
682 .name = "ds1wm", 682 .name = "ds1wm",
683 .enable = ds1wm_enable, 683 .enable = ds1wm_enable,
684 .disable = ds1wm_disable, 684 .disable = ds1wm_disable,
685 .driver_data = &ds1wm_pdata, 685 .mfd_data = &ds1wm_pdata,
686 .num_resources = ARRAY_SIZE(ds1wm_resources), 686 .num_resources = ARRAY_SIZE(ds1wm_resources),
687 .resources = ds1wm_resources, 687 .resources = ds1wm_resources,
688}; 688};
diff --git a/drivers/mfd/htc-pasic3.c b/drivers/mfd/htc-pasic3.c
index 079d39665549..fb9770b39a32 100644
--- a/drivers/mfd/htc-pasic3.c
+++ b/drivers/mfd/htc-pasic3.c
@@ -117,7 +117,7 @@ static struct mfd_cell ds1wm_cell __initdata = {
117 .name = "ds1wm", 117 .name = "ds1wm",
118 .enable = ds1wm_enable, 118 .enable = ds1wm_enable,
119 .disable = ds1wm_disable, 119 .disable = ds1wm_disable,
120 .driver_data = &ds1wm_pdata, 120 .mfd_data = &ds1wm_pdata,
121 .num_resources = 2, 121 .num_resources = 2,
122 .resources = ds1wm_resources, 122 .resources = ds1wm_resources,
123}; 123};
@@ -172,7 +172,6 @@ static int __init pasic3_probe(struct platform_device *pdev)
172 } 172 }
173 173
174 if (pdata && pdata->led_pdata) { 174 if (pdata && pdata->led_pdata) {
175 led_cell.driver_data = pdata->led_pdata;
176 ret = mfd_add_devices(&pdev->dev, pdev->id, &led_cell, 1, r, 0); 175 ret = mfd_add_devices(&pdev->dev, pdev->id, &led_cell, 1, r, 0);
177 if (ret < 0) 176 if (ret < 0)
178 dev_warn(dev, "failed to register LED device\n"); 177 dev_warn(dev, "failed to register LED device\n");
diff --git a/drivers/w1/masters/ds1wm.c b/drivers/w1/masters/ds1wm.c
index 94f55d80f9ac..22fc726feb9b 100644
--- a/drivers/w1/masters/ds1wm.c
+++ b/drivers/w1/masters/ds1wm.c
@@ -216,7 +216,7 @@ static int ds1wm_find_divisor(int gclk)
216static void ds1wm_up(struct ds1wm_data *ds1wm_data) 216static void ds1wm_up(struct ds1wm_data *ds1wm_data)
217{ 217{
218 int divisor; 218 int divisor;
219 struct ds1wm_driver_data *plat = ds1wm_data->cell->driver_data; 219 struct ds1wm_driver_data *plat = mfd_get_data(ds1wm_data->pdev);
220 220
221 if (ds1wm_data->cell->enable) 221 if (ds1wm_data->cell->enable)
222 ds1wm_data->cell->enable(ds1wm_data->pdev); 222 ds1wm_data->cell->enable(ds1wm_data->pdev);
@@ -356,7 +356,7 @@ static int ds1wm_probe(struct platform_device *pdev)
356 ret = -ENOMEM; 356 ret = -ENOMEM;
357 goto err0; 357 goto err0;
358 } 358 }
359 plat = cell->driver_data; 359 plat = mfd_get_data(pdev);
360 360
361 /* calculate bus shift from mem resource */ 361 /* calculate bus shift from mem resource */
362 ds1wm_data->bus_shift = resource_size(res) >> 3; 362 ds1wm_data->bus_shift = resource_size(res) >> 3;