Loading drivers/mfd/mfd-core.c +7 −0 Original line number Diff line number Diff line Loading @@ -88,6 +88,13 @@ static int mfd_add_device(struct device *parent, int id, pdev->dev.parent = parent; if (cell->pdata_size) { ret = platform_device_add_data(pdev, cell->platform_data, cell->pdata_size); if (ret) goto fail_res; } ret = mfd_platform_add_cell(pdev, cell); if (ret) goto fail_res; Loading include/linux/mfd/core.h +4 −0 Original line number Diff line number Diff line Loading @@ -36,6 +36,10 @@ struct mfd_cell { /* mfd_data can be used to pass data to client drivers */ void *mfd_data; /* platform data passed to the sub devices drivers */ void *platform_data; size_t pdata_size; /* * These resources can be specified relative to the parent device. * For accessing hardware you should use resources from the platform dev Loading Loading
drivers/mfd/mfd-core.c +7 −0 Original line number Diff line number Diff line Loading @@ -88,6 +88,13 @@ static int mfd_add_device(struct device *parent, int id, pdev->dev.parent = parent; if (cell->pdata_size) { ret = platform_device_add_data(pdev, cell->platform_data, cell->pdata_size); if (ret) goto fail_res; } ret = mfd_platform_add_cell(pdev, cell); if (ret) goto fail_res; Loading
include/linux/mfd/core.h +4 −0 Original line number Diff line number Diff line Loading @@ -36,6 +36,10 @@ struct mfd_cell { /* mfd_data can be used to pass data to client drivers */ void *mfd_data; /* platform data passed to the sub devices drivers */ void *platform_data; size_t pdata_size; /* * These resources can be specified relative to the parent device. * For accessing hardware you should use resources from the platform dev Loading