]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
of: property: Fix documentation for out values
authorMatti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
Wed, 13 Nov 2019 06:43:38 +0000 (08:43 +0200)
committerRob Herring <robh@kernel.org>
Thu, 14 Nov 2019 22:32:17 +0000 (16:32 -0600)
Property fetching functions which return number of successfully fetched
properties should not state that out-values are only modified if 0 is
returned. Fix this. Also, "pointer to return value" is slightly suboptimal
phrase as "return value" commonly refers to value function returns (not via
arguments). Rather use "pointer to found values".

Signed-off-by: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
Reviewed-by: Frank Rowand <frowand.list@gmail.com>
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/of/property.c

index d7fa75e31f22415c447f05fa99437e1591cb0a1a..c1dd22ed03f38ee94d825f924e96310121672702 100644 (file)
@@ -164,7 +164,7 @@ EXPORT_SYMBOL_GPL(of_property_read_u64_index);
  *
  * @np:                device node from which the property value is to be read.
  * @propname:  name of the property to be searched.
- * @out_values:        pointer to return value, modified only if return value is 0.
+ * @out_values:        pointer to found values.
  * @sz_min:    minimum number of array elements to read
  * @sz_max:    maximum number of array elements to read, if zero there is no
  *             upper limit on the number of elements in the dts entry but only
@@ -212,7 +212,7 @@ EXPORT_SYMBOL_GPL(of_property_read_variable_u8_array);
  *
  * @np:                device node from which the property value is to be read.
  * @propname:  name of the property to be searched.
- * @out_values:        pointer to return value, modified only if return value is 0.
+ * @out_values:        pointer to found values.
  * @sz_min:    minimum number of array elements to read
  * @sz_max:    maximum number of array elements to read, if zero there is no
  *             upper limit on the number of elements in the dts entry but only
@@ -260,7 +260,7 @@ EXPORT_SYMBOL_GPL(of_property_read_variable_u16_array);
  *
  * @np:                device node from which the property value is to be read.
  * @propname:  name of the property to be searched.
- * @out_values:        pointer to return value, modified only if return value is 0.
+ * @out_values:        pointer to return found values.
  * @sz_min:    minimum number of array elements to read
  * @sz_max:    maximum number of array elements to read, if zero there is no
  *             upper limit on the number of elements in the dts entry but only
@@ -334,7 +334,7 @@ EXPORT_SYMBOL_GPL(of_property_read_u64);
  *
  * @np:                device node from which the property value is to be read.
  * @propname:  name of the property to be searched.
- * @out_values:        pointer to return value, modified only if return value is 0.
+ * @out_values:        pointer to found values.
  * @sz_min:    minimum number of array elements to read
  * @sz_max:    maximum number of array elements to read, if zero there is no
  *             upper limit on the number of elements in the dts entry but only