All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] of/base: fix typos
@ 2013-05-07  6:04 Prabhakar Lad
  2013-05-23 12:28 ` Prabhakar Lad
  0 siblings, 1 reply; 7+ messages in thread
From: Prabhakar Lad @ 2013-05-07  6:04 UTC (permalink / raw)
  To: Grant Likely, Rob Herring
  Cc: devicetree-discuss, linux-kernel, Lad, Prabhakar

From: Lad, Prabhakar <prabhakar.csengg@gmail.com>

the function of_property_read_u8/16/32_array() has a parameter
out_values, but the description mentioned it as out_value. This
patch fixes this typo.

Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
---
 drivers/of/base.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/of/base.c b/drivers/of/base.c
index 321d3ef..418985f 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -750,7 +750,7 @@ EXPORT_SYMBOL(of_find_node_by_phandle);
  *
  * @np:		device node from which the property value is to be read.
  * @propname:	name of the property to be searched.
- * @out_value:	pointer to return value, modified only if return value is 0.
+ * @out_values:	pointer to return value, modified only if return value is 0.
  * @sz:		number of array elements to read
  *
  * Search for a property in a device node and read 8-bit value(s) from
@@ -761,7 +761,7 @@ EXPORT_SYMBOL(of_find_node_by_phandle);
  * dts entry of array should be like:
  *	property = /bits/ 8 <0x50 0x60 0x70>;
  *
- * The out_value is modified only if a valid u8 value can be decoded.
+ * The out_values is modified only if a valid u8 value can be decoded.
  */
 int of_property_read_u8_array(const struct device_node *np,
 			const char *propname, u8 *out_values, size_t sz)
@@ -788,7 +788,7 @@ EXPORT_SYMBOL_GPL(of_property_read_u8_array);
  *
  * @np:		device node from which the property value is to be read.
  * @propname:	name of the property to be searched.
- * @out_value:	pointer to return value, modified only if return value is 0.
+ * @out_values:	pointer to return value, modified only if return value is 0.
  * @sz:		number of array elements to read
  *
  * Search for a property in a device node and read 16-bit value(s) from
@@ -799,7 +799,7 @@ EXPORT_SYMBOL_GPL(of_property_read_u8_array);
  * dts entry of array should be like:
  *	property = /bits/ 16 <0x5000 0x6000 0x7000>;
  *
- * The out_value is modified only if a valid u16 value can be decoded.
+ * The out_values is modified only if a valid u16 value can be decoded.
  */
 int of_property_read_u16_array(const struct device_node *np,
 			const char *propname, u16 *out_values, size_t sz)
@@ -827,7 +827,7 @@ EXPORT_SYMBOL_GPL(of_property_read_u16_array);
  *
  * @np:		device node from which the property value is to be read.
  * @propname:	name of the property to be searched.
- * @out_value:	pointer to return value, modified only if return value is 0.
+ * @out_values:	pointer to return value, modified only if return value is 0.
  * @sz:		number of array elements to read
  *
  * Search for a property in a device node and read 32-bit value(s) from
@@ -835,7 +835,7 @@ EXPORT_SYMBOL_GPL(of_property_read_u16_array);
  * -ENODATA if property does not have a value, and -EOVERFLOW if the
  * property data isn't large enough.
  *
- * The out_value is modified only if a valid u32 value can be decoded.
+ * The out_values is modified only if a valid u32 value can be decoded.
  */
 int of_property_read_u32_array(const struct device_node *np,
 			       const char *propname, u32 *out_values,
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] of/base: fix typos
  2013-05-07  6:04 [PATCH] of/base: fix typos Prabhakar Lad
@ 2013-05-23 12:28 ` Prabhakar Lad
  2013-05-31  9:30   ` Prabhakar Lad
  0 siblings, 1 reply; 7+ messages in thread
From: Prabhakar Lad @ 2013-05-23 12:28 UTC (permalink / raw)
  To: Grant Likely, Rob Herring
  Cc: devicetree-discuss, linux-kernel, Lad, Prabhakar

Hi Rob/Grant,

On Tue, May 7, 2013 at 11:34 AM, Prabhakar Lad
<prabhakar.csengg@gmail.com> wrote:
> From: Lad, Prabhakar <prabhakar.csengg@gmail.com>
>
> the function of_property_read_u8/16/32_array() has a parameter
> out_values, but the description mentioned it as out_value. This
> patch fixes this typo.
>
gentle ping.

Regards,
--Prabhakar Lad

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] of/base: fix typos
  2013-05-23 12:28 ` Prabhakar Lad
@ 2013-05-31  9:30   ` Prabhakar Lad
  2013-05-31  9:34       ` Linus Walleij
  0 siblings, 1 reply; 7+ messages in thread
From: Prabhakar Lad @ 2013-05-31  9:30 UTC (permalink / raw)
  To: Grant Likely, Rob Herring, Linus Walleij
  Cc: devicetree-discuss, linux-kernel, Lad, Prabhakar

Hi Linus,

On Thu, May 23, 2013 at 5:58 PM, Prabhakar Lad
<prabhakar.csengg@gmail.com> wrote:
> Hi Rob/Grant,
>
> On Tue, May 7, 2013 at 11:34 AM, Prabhakar Lad
> <prabhakar.csengg@gmail.com> wrote:
>> From: Lad, Prabhakar <prabhakar.csengg@gmail.com>
>>
>> the function of_property_read_u8/16/32_array() has a parameter
>> out_values, but the description mentioned it as out_value. This
>> patch fixes this typo.
>>
Can you pick this patch ?

Regards,
--Prabhakar Lad

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] of/base: fix typos
@ 2013-05-31  9:34       ` Linus Walleij
  0 siblings, 0 replies; 7+ messages in thread
From: Linus Walleij @ 2013-05-31  9:34 UTC (permalink / raw)
  To: Prabhakar Lad; +Cc: Grant Likely, Rob Herring, devicetree-discuss, linux-kernel

On Fri, May 31, 2013 at 11:30 AM, Prabhakar Lad
<prabhakar.csengg@gmail.com> wrote:

> Hi Linus,
(...)
> Can you pick this patch ?

No. I'm not a maintainer of drivers/of.

Only Grant and Rob can take changes to drivers/of.
(Check MAINTAINERS.)

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] of/base: fix typos
@ 2013-05-31  9:34       ` Linus Walleij
  0 siblings, 0 replies; 7+ messages in thread
From: Linus Walleij @ 2013-05-31  9:34 UTC (permalink / raw)
  To: Prabhakar Lad
  Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA, Rob Herring

On Fri, May 31, 2013 at 11:30 AM, Prabhakar Lad
<prabhakar.csengg-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:

> Hi Linus,
(...)
> Can you pick this patch ?

No. I'm not a maintainer of drivers/of.

Only Grant and Rob can take changes to drivers/of.
(Check MAINTAINERS.)

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] of/base: fix typos
  2013-05-31  9:34       ` Linus Walleij
@ 2013-06-06  0:09         ` Grant Likely
  -1 siblings, 0 replies; 7+ messages in thread
From: Grant Likely @ 2013-06-06  0:09 UTC (permalink / raw)
  To: Linus Walleij, Prabhakar Lad
  Cc: Rob Herring, devicetree-discuss, linux-kernel

On Fri, 31 May 2013 11:34:49 +0200, Linus Walleij <linus.walleij@linaro.org> wrote:
> On Fri, May 31, 2013 at 11:30 AM, Prabhakar Lad
> <prabhakar.csengg@gmail.com> wrote:
> 
> > Hi Linus,
> (...)
> > Can you pick this patch ?
> 
> No. I'm not a maintainer of drivers/of.
> 
> Only Grant and Rob can take changes to drivers/of.
> (Check MAINTAINERS.)

Applied.

g.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] of/base: fix typos
@ 2013-06-06  0:09         ` Grant Likely
  0 siblings, 0 replies; 7+ messages in thread
From: Grant Likely @ 2013-06-06  0:09 UTC (permalink / raw)
  To: Linus Walleij, Prabhakar Lad
  Cc: Rob Herring, devicetree-discuss, linux-kernel

On Fri, 31 May 2013 11:34:49 +0200, Linus Walleij <linus.walleij@linaro.org> wrote:
> On Fri, May 31, 2013 at 11:30 AM, Prabhakar Lad
> <prabhakar.csengg@gmail.com> wrote:
> 
> > Hi Linus,
> (...)
> > Can you pick this patch ?
> 
> No. I'm not a maintainer of drivers/of.
> 
> Only Grant and Rob can take changes to drivers/of.
> (Check MAINTAINERS.)

Applied.

g.

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-06-06  0:09 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-07  6:04 [PATCH] of/base: fix typos Prabhakar Lad
2013-05-23 12:28 ` Prabhakar Lad
2013-05-31  9:30   ` Prabhakar Lad
2013-05-31  9:34     ` Linus Walleij
2013-05-31  9:34       ` Linus Walleij
2013-06-06  0:09       ` Grant Likely
2013-06-06  0:09         ` Grant Likely

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.