[PATCH] of: property: fix typo in kernel-doc return description

Song Hongyi posted 1 patch 1 month, 1 week ago
drivers/of/property.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] of: property: fix typo in kernel-doc return description
Posted by Song Hongyi 1 month, 1 week ago
Fix the spelling of "success" in the return value description
of the kernel-doc comment to improve documentation quality.

Signed-off-by: Song Hongyi <szpcq123@gmail.com>
---
 drivers/of/property.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/of/property.c b/drivers/of/property.c
index 50d95d512bf5..457e628ff9db 100644
--- a/drivers/of/property.c
+++ b/drivers/of/property.c
@@ -88,7 +88,7 @@ EXPORT_SYMBOL(of_graph_is_present);
  * Search for a property in a device node and count the number of elements of
  * size elem_size in it.
  *
- * Return: The number of elements on sucess, -EINVAL if the property does not
+ * Return: The number of elements on success, -EINVAL if the property does not
  * exist or its length does not match a multiple of elem_size and -ENODATA if
  * the property does not have a value.
  */
-- 
2.53.0
Re: [PATCH] of: property: fix typo in kernel-doc return description
Posted by Rob Herring (Arm) 1 month, 1 week ago
On Wed, 25 Feb 2026 17:38:14 +0800, Song Hongyi wrote:
> Fix the spelling of "success" in the return value description
> of the kernel-doc comment to improve documentation quality.
> 
> Signed-off-by: Song Hongyi <szpcq123@gmail.com>
> ---
>  drivers/of/property.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Applied, thanks!