* [PATCH 1/1] of: base: Fix spelling issue with function param 'prop'
@ 2021-03-29 15:24 Lee Jones
2021-03-29 18:23 ` Rob Herring
0 siblings, 1 reply; 2+ messages in thread
From: Lee Jones @ 2021-03-29 15:24 UTC (permalink / raw)
To: lee.jones
Cc: linux-kernel, Rob Herring, Frank Rowand, David S. Miller,
devicetree
Fixes the following W=1 kernel build warning(s):
drivers/of/base.c:1781: warning: Function parameter or member 'prop' not described in '__of_add_property'
drivers/of/base.c:1781: warning: Excess function parameter 'prob' description in '__of_add_property'
drivers/of/base.c:1804: warning: Function parameter or member 'prop' not described in 'of_add_property'
drivers/of/base.c:1804: warning: Excess function parameter 'prob' description in 'of_add_property'
drivers/of/base.c:1855: warning: Function parameter or member 'prop' not described in 'of_remove_property'
drivers/of/base.c:1855: warning: Excess function parameter 'prob' description in 'of_remove_property'
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Frank Rowand <frowand.list@gmail.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: devicetree@vger.kernel.org
Signed-off-by: Lee Jones <lee.jones@linaro.org>
---
drivers/of/base.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/of/base.c b/drivers/of/base.c
index 457d1ec27300b..aaf52eaa8b8c7 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -1775,7 +1775,7 @@ EXPORT_SYMBOL(of_count_phandle_with_args);
/**
* __of_add_property - Add a property to a node without lock operations
* @np: Caller's Device Node
- * @prob: Property to add
+ * @prop: Property to add
*/
int __of_add_property(struct device_node *np, struct property *prop)
{
@@ -1798,7 +1798,7 @@ int __of_add_property(struct device_node *np, struct property *prop)
/**
* of_add_property - Add a property to a node
* @np: Caller's Device Node
- * @prob: Property to add
+ * @prop: Property to add
*/
int of_add_property(struct device_node *np, struct property *prop)
{
@@ -1844,7 +1844,7 @@ int __of_remove_property(struct device_node *np, struct property *prop)
/**
* of_remove_property - Remove a property from a node.
* @np: Caller's Device Node
- * @prob: Property to remove
+ * @prop: Property to remove
*
* Note that we don't actually remove it, since we have given out
* who-knows-how-many pointers to the data using get-property.
--
2.27.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 1/1] of: base: Fix spelling issue with function param 'prop'
2021-03-29 15:24 [PATCH 1/1] of: base: Fix spelling issue with function param 'prop' Lee Jones
@ 2021-03-29 18:23 ` Rob Herring
0 siblings, 0 replies; 2+ messages in thread
From: Rob Herring @ 2021-03-29 18:23 UTC (permalink / raw)
To: Lee Jones
Cc: linux-kernel, Rob Herring, devicetree, David S. Miller,
Frank Rowand
On Mon, 29 Mar 2021 16:24:35 +0100, Lee Jones wrote:
> Fixes the following W=1 kernel build warning(s):
>
> drivers/of/base.c:1781: warning: Function parameter or member 'prop' not described in '__of_add_property'
> drivers/of/base.c:1781: warning: Excess function parameter 'prob' description in '__of_add_property'
> drivers/of/base.c:1804: warning: Function parameter or member 'prop' not described in 'of_add_property'
> drivers/of/base.c:1804: warning: Excess function parameter 'prob' description in 'of_add_property'
> drivers/of/base.c:1855: warning: Function parameter or member 'prop' not described in 'of_remove_property'
> drivers/of/base.c:1855: warning: Excess function parameter 'prob' description in 'of_remove_property'
>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Frank Rowand <frowand.list@gmail.com>
> Cc: "David S. Miller" <davem@davemloft.net>
> Cc: devicetree@vger.kernel.org
> Signed-off-by: Lee Jones <lee.jones@linaro.org>
> ---
> drivers/of/base.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
Applied, thanks!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-03-29 18:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-29 15:24 [PATCH 1/1] of: base: Fix spelling issue with function param 'prop' Lee Jones
2021-03-29 18:23 ` Rob Herring
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).