diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/mfd/core.h | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h index 1fd7c4467e5a..aefc378f8dc9 100644 --- a/include/linux/mfd/core.h +++ b/include/linux/mfd/core.h | |||
| @@ -33,9 +33,10 @@ struct mfd_cell { | |||
| 33 | /* driver-specific data for MFD-aware "cell" drivers */ | 33 | /* driver-specific data for MFD-aware "cell" drivers */ |
| 34 | void *driver_data; | 34 | void *driver_data; |
| 35 | 35 | ||
| 36 | /* platform_data can be used to either pass data to "generic" | 36 | /* platform_data can be used to pass data to "generic" drivers */ |
| 37 | driver or as a hook to mfd_cell for the "cell" drivers */ | ||
| 38 | void *platform_data; | 37 | void *platform_data; |
| 38 | |||
| 39 | /* unused */ | ||
| 39 | size_t data_size; | 40 | size_t data_size; |
| 40 | 41 | ||
| 41 | /* | 42 | /* |
| @@ -55,6 +56,24 @@ struct mfd_cell { | |||
| 55 | bool pm_runtime_no_callbacks; | 56 | bool pm_runtime_no_callbacks; |
| 56 | }; | 57 | }; |
| 57 | 58 | ||
| 59 | /* | ||
| 60 | * Given a platform device that's been created by mfd_add_devices(), fetch | ||
| 61 | * the mfd_cell that created it. | ||
| 62 | */ | ||
| 63 | static inline const struct mfd_cell *mfd_get_cell(struct platform_device *pdev) | ||
| 64 | { | ||
| 65 | return pdev->dev.platform_data; | ||
| 66 | } | ||
| 67 | |||
| 68 | /* | ||
| 69 | * Given a platform device that's been created by mfd_add_devices(), fetch | ||
| 70 | * the .platform_data entry from the mfd_cell that created it. | ||
| 71 | */ | ||
| 72 | static inline void *mfd_get_data(struct platform_device *pdev) | ||
| 73 | { | ||
| 74 | return mfd_get_cell(pdev)->platform_data; | ||
| 75 | } | ||
| 76 | |||
| 58 | extern int mfd_add_devices(struct device *parent, int id, | 77 | extern int mfd_add_devices(struct device *parent, int id, |
| 59 | const struct mfd_cell *cells, int n_devs, | 78 | const struct mfd_cell *cells, int n_devs, |
| 60 | struct resource *mem_base, | 79 | struct resource *mem_base, |
