* [PATCH] lib/string: fix kernel-doc warnings
@ 2009-12-17 2:16 Randy Dunlap
0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2009-12-17 2:16 UTC (permalink / raw)
To: lkml, akpm
From: Randy Dunlap <randy.dunlap@oracle.com>
Fix kernel-doc warnings (@arg name) in string.c::skip_spaces().
Warning(lib/string.c:347): No description found for parameter 'str'
Warning(lib/string.c:347): Excess function parameter 's' description in 'skip_spaces'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
lib/string.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- linux-2.6.32-git12.orig/lib/string.c
+++ linux-2.6.32-git12/lib/string.c
@@ -338,10 +338,10 @@ EXPORT_SYMBOL(strnchr);
#endif
/**
- * skip_spaces - Removes leading whitespace from @s.
- * @s: The string to be stripped.
+ * skip_spaces - Removes leading whitespace from @str.
+ * @str: The string to be stripped.
*
- * Returns a pointer to the first non-whitespace character in @s.
+ * Returns a pointer to the first non-whitespace character in @str.
*/
char *skip_spaces(const char *str)
{
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-12-17 3:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-17 2:16 [PATCH] lib/string: fix kernel-doc warnings Randy Dunlap
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.