diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2019-04-23 12:04:45 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2019-05-08 14:06:02 +0300 |
commit | 1946f9967c5684ad51a04597c0e9e8a3066374de (patch) | |
tree | 19fa152fd8b3352623c795370b7d820437fb8aaa /drivers/mfd/mfd-core.c | |
parent | 93fb61e2c3defc6fe89cdf041f7f6a659b64ec56 (diff) | |
download | linux-1946f9967c5684ad51a04597c0e9e8a3066374de.tar.xz |
mfd: mfd-core: Document mfd_add_devices()
Add a kernel doc for mfd_add_devices().
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Acked-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/mfd-core.c')
-rw-r--r-- | drivers/mfd/mfd-core.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/drivers/mfd/mfd-core.c b/drivers/mfd/mfd-core.c index 94e3f32ce935..1ade4c8cc91f 100644 --- a/drivers/mfd/mfd-core.c +++ b/drivers/mfd/mfd-core.c @@ -269,6 +269,19 @@ fail_alloc: return ret; } +/** + * mfd_add_devices - register child devices + * + * @parent: Pointer to parent device. + * @id: Can be PLATFORM_DEVID_AUTO to let the Platform API take care + * of device numbering, or will be added to a device's cell_id. + * @cells: Array of (struct mfd_cell)s describing child devices. + * @n_devs: Number of child devices to register. + * @mem_base: Parent register range resource for child devices. + * @irq_base: Base of the range of virtual interrupt numbers allocated for + * this MFD device. Unused if @domain is specified. + * @domain: Interrupt domain to create mappings for hardware interrupts. + */ int mfd_add_devices(struct device *parent, int id, const struct mfd_cell *cells, int n_devs, struct resource *mem_base, |