Commit 1946f996 authored by Bartosz Golaszewski's avatar Bartosz Golaszewski Committed by Lee Jones

mfd: mfd-core: Document mfd_add_devices()

Add a kernel doc for mfd_add_devices().
Signed-off-by: default avatarBartosz Golaszewski <bgolaszewski@baylibre.com>
Acked-by: default avatarPavel Machek <pavel@ucw.cz>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 93fb61e2
...@@ -269,6 +269,19 @@ static int mfd_add_device(struct device *parent, int id, ...@@ -269,6 +269,19 @@ static int mfd_add_device(struct device *parent, int id,
return ret; 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, int mfd_add_devices(struct device *parent, int id,
const struct mfd_cell *cells, int n_devs, const struct mfd_cell *cells, int n_devs,
struct resource *mem_base, struct resource *mem_base,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment