diff options
| author | Samuel Ortiz <sameo@linux.intel.com> | 2011-04-07 19:23:57 -0400 |
|---|---|---|
| committer | Samuel Ortiz <sameo@linux.intel.com> | 2011-05-26 13:45:05 -0400 |
| commit | 3271d382c3ffe61ef3d059ef47e635dbe031030e (patch) | |
| tree | 2612b0030f0fd85ffe7722cbf195ac061a3eaf76 /drivers/i2c | |
| parent | 7dc00a0d14992d0083fefccad7839ac837ea55bc (diff) | |
mfd: Use mfd cell platform_data for timberdale cells platform bits
With the addition of a device platform mfd_cell pointer, MFD drivers
can go back to passing platform data back to their sub drivers.
This allows for an mfd_cell->mfd_data removal and thus keep the
sub drivers MFD agnostic. This is mostly needed for non MFD aware
sub drivers.
Acked-by: Richard Röjfors <richard.rojfors@pelagicore.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/i2c')
| -rw-r--r-- | drivers/i2c/busses/i2c-ocores.c | 3 | ||||
| -rw-r--r-- | drivers/i2c/busses/i2c-xiic.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/drivers/i2c/busses/i2c-ocores.c b/drivers/i2c/busses/i2c-ocores.c index fee1a2613861..1b46a9d9f907 100644 --- a/drivers/i2c/busses/i2c-ocores.c +++ b/drivers/i2c/busses/i2c-ocores.c | |||
| @@ -49,7 +49,6 @@ | |||
| 49 | #include <linux/init.h> | 49 | #include <linux/init.h> |
| 50 | #include <linux/errno.h> | 50 | #include <linux/errno.h> |
| 51 | #include <linux/platform_device.h> | 51 | #include <linux/platform_device.h> |
| 52 | #include <linux/mfd/core.h> | ||
| 53 | #include <linux/i2c.h> | 52 | #include <linux/i2c.h> |
| 54 | #include <linux/interrupt.h> | 53 | #include <linux/interrupt.h> |
| 55 | #include <linux/wait.h> | 54 | #include <linux/wait.h> |
| @@ -306,7 +305,7 @@ static int __devinit ocores_i2c_probe(struct platform_device *pdev) | |||
| 306 | return -EIO; | 305 | return -EIO; |
| 307 | } | 306 | } |
| 308 | 307 | ||
| 309 | pdata = mfd_get_data(pdev); | 308 | pdata = pdev->dev.platform_data; |
| 310 | if (pdata) { | 309 | if (pdata) { |
| 311 | i2c->regstep = pdata->regstep; | 310 | i2c->regstep = pdata->regstep; |
| 312 | i2c->clock_khz = pdata->clock_khz; | 311 | i2c->clock_khz = pdata->clock_khz; |
diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c index e9d5ff4d1496..4bb68f35caf2 100644 --- a/drivers/i2c/busses/i2c-xiic.c +++ b/drivers/i2c/busses/i2c-xiic.c | |||
| @@ -34,7 +34,6 @@ | |||
| 34 | #include <linux/errno.h> | 34 | #include <linux/errno.h> |
| 35 | #include <linux/delay.h> | 35 | #include <linux/delay.h> |
| 36 | #include <linux/platform_device.h> | 36 | #include <linux/platform_device.h> |
| 37 | #include <linux/mfd/core.h> | ||
| 38 | #include <linux/i2c.h> | 37 | #include <linux/i2c.h> |
| 39 | #include <linux/interrupt.h> | 38 | #include <linux/interrupt.h> |
| 40 | #include <linux/wait.h> | 39 | #include <linux/wait.h> |
| @@ -705,7 +704,7 @@ static int __devinit xiic_i2c_probe(struct platform_device *pdev) | |||
| 705 | if (irq < 0) | 704 | if (irq < 0) |
| 706 | goto resource_missing; | 705 | goto resource_missing; |
| 707 | 706 | ||
| 708 | pdata = mfd_get_data(pdev); | 707 | pdata = (struct xiic_i2c_platform_data *) pdev->dev.platform_data; |
| 709 | if (!pdata) | 708 | if (!pdata) |
| 710 | return -EINVAL; | 709 | return -EINVAL; |
| 711 | 710 | ||
