driver core: Clarify documentation for fwnode_operations.add_links()

The wording was a bit ambiguous. So update it to make it clear.

Signed-off-by: Saravana Kannan <saravanak@google.com>
Reviewed-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Link: https://lore.kernel.org/r/20191113023559.62295-2-saravanak@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Saravana Kannan 2019-11-12 18:35:59 -08:00 committed by Greg Kroah-Hartman
parent c745da8d43
commit bee3bbe616

View File

@ -94,15 +94,16 @@ struct fwnode_reference_args {
* available suppliers. * available suppliers.
* *
* Return 0 if device links have been successfully created to all * Return 0 if device links have been successfully created to all
* the suppliers this device needs to create device links to or if * the known suppliers of this device or if the supplier
* the supplier information is not known. * information is not known.
* *
* Return -ENODEV if and only if the suppliers needed for probing * Return -ENODEV if the suppliers needed for probing this device
* the device are not yet available to create device links to. * have not been registered yet (because device links can only be
* created to devices registered with the driver core).
* *
* Return -EAGAIN if there are suppliers that need to be linked to * Return -EAGAIN if some of the suppliers of this device have not
* that are not yet available but none of those suppliers are * been registered yet, but none of those suppliers are necessary
* necessary for probing this device. * for probing the device.
*/ */
struct fwnode_operations { struct fwnode_operations {
struct fwnode_handle *(*get)(struct fwnode_handle *fwnode); struct fwnode_handle *(*get)(struct fwnode_handle *fwnode);