diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2009-04-30 17:43:31 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-06-16 00:30:27 -0400 |
commit | 1902a9e62ba34a1071407ab61cef626e019a0923 (patch) | |
tree | 082b821299d7a543b8827f571f809e535d3663ed /drivers/mfd/pcf50633-core.c | |
parent | 79510cdbc76265426c6d75326436624393694ea7 (diff) |
mfd: remove driver_data direct access of struct device
In the near future, the driver core is going to not allow direct access
to the driver_data pointer in struct device. Instead, the functions
dev_get_drvdata() and dev_set_drvdata() should be used. These functions
have been around since the beginning, so are backwards compatible with
all older kernel versions.
Cc: Samuel Ortiz <sameo@linux.intel.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/mfd/pcf50633-core.c')
-rw-r--r-- | drivers/mfd/pcf50633-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/pcf50633-core.c b/drivers/mfd/pcf50633-core.c index 11a6248cc1c1..082c197ab9b8 100644 --- a/drivers/mfd/pcf50633-core.c +++ b/drivers/mfd/pcf50633-core.c | |||
@@ -618,7 +618,7 @@ static int __devinit pcf50633_probe(struct i2c_client *client, | |||
618 | 618 | ||
619 | pdev->dev.parent = pcf->dev; | 619 | pdev->dev.parent = pcf->dev; |
620 | pdev->dev.platform_data = &pdata->reg_init_data[i]; | 620 | pdev->dev.platform_data = &pdata->reg_init_data[i]; |
621 | pdev->dev.driver_data = pcf; | 621 | dev_set_drvdata(&pdev->dev, pcf); |
622 | pcf->regulator_pdev[i] = pdev; | 622 | pcf->regulator_pdev[i] = pdev; |
623 | 623 | ||
624 | platform_device_add(pdev); | 624 | platform_device_add(pdev); |