mfd: Remove driver_data field from mfd_cell
All users of this have now been switched over to using mfd_data; it can go away now. Signed-off-by: Andres Salomon <dilinger@queued.net> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
committed by
Samuel Ortiz
parent
46673ed2cd
commit
dcb50e83bb
@@ -37,7 +37,6 @@ static int mfd_add_device(struct device *parent, int id,
|
|||||||
goto fail_device;
|
goto fail_device;
|
||||||
|
|
||||||
pdev->dev.parent = parent;
|
pdev->dev.parent = parent;
|
||||||
platform_set_drvdata(pdev, cell->driver_data);
|
|
||||||
|
|
||||||
ret = platform_device_add_data(pdev, cell, sizeof(*cell));
|
ret = platform_device_add_data(pdev, cell, sizeof(*cell));
|
||||||
if (ret)
|
if (ret)
|
||||||
|
@@ -30,9 +30,6 @@ struct mfd_cell {
|
|||||||
int (*suspend)(struct platform_device *dev);
|
int (*suspend)(struct platform_device *dev);
|
||||||
int (*resume)(struct platform_device *dev);
|
int (*resume)(struct platform_device *dev);
|
||||||
|
|
||||||
/* driver-specific data for MFD-aware "cell" drivers */
|
|
||||||
void *driver_data;
|
|
||||||
|
|
||||||
/* mfd_data can be used to pass data to client drivers */
|
/* mfd_data can be used to pass data to client drivers */
|
||||||
void *mfd_data;
|
void *mfd_data;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user