diff options
Diffstat (limited to 'drivers/of/platform.c')
| -rw-r--r-- | drivers/of/platform.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/drivers/of/platform.c b/drivers/of/platform.c index 0da86209ddaa..25d448f5af91 100644 --- a/drivers/of/platform.c +++ b/drivers/of/platform.c @@ -44,7 +44,7 @@ static const struct of_device_id of_skipped_node_table[] = {   * Takes a reference to the embedded struct device which needs to be dropped   * after use.   * - * Returns platform_device pointer, or NULL if not found + * Return: platform_device pointer, or NULL if not found   */  struct platform_device *of_find_device_by_node(struct device_node *np)  { @@ -160,7 +160,7 @@ EXPORT_SYMBOL(of_device_alloc);   * @platform_data: pointer to populate platform_data pointer with   * @parent: Linux device model parent device.   * - * Returns pointer to created platform device, or NULL if a device was not + * Return: Pointer to created platform device, or NULL if a device was not   * registered.  Unavailable devices will not get registered.   */  static struct platform_device *of_platform_device_create_pdata( @@ -204,7 +204,7 @@ err_clear_flag:   * @bus_id: name to assign device   * @parent: Linux device model parent device.   * - * Returns pointer to created platform device, or NULL if a device was not + * Return: Pointer to created platform device, or NULL if a device was not   * registered.  Unavailable devices will not get registered.   */  struct platform_device *of_platform_device_create(struct device_node *np, @@ -290,7 +290,7 @@ static struct amba_device *of_amba_device_create(struct device_node *node,  }  #endif /* CONFIG_ARM_AMBA */ -/** +/*   * of_dev_lookup() - Given a device node, lookup the preferred Linux name   */  static const struct of_dev_auxdata *of_dev_lookup(const struct of_dev_auxdata *lookup, @@ -463,7 +463,7 @@ EXPORT_SYMBOL(of_platform_bus_probe);   * New board support should be using this function instead of   * of_platform_bus_probe().   * - * Returns 0 on success, < 0 on failure. + * Return: 0 on success, < 0 on failure.   */  int of_platform_populate(struct device_node *root,  			const struct of_device_id *matches, @@ -607,7 +607,7 @@ static void devm_of_platform_populate_release(struct device *dev, void *res)   * Similar to of_platform_populate(), but will automatically call   * of_platform_depopulate() when the device is unbound from the bus.   * - * Returns 0 on success, < 0 on failure. + * Return: 0 on success, < 0 on failure.   */  int devm_of_platform_populate(struct device *dev)  { | 
