The patch titled lib/string.c: fix kernel-doc warnings has been added to the -mm tree. Its filename is lib-stringc-fix-kernel-doc-warnings.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: lib/string.c: fix kernel-doc warnings From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> 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@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- lib/string.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN lib/string.c~lib-stringc-fix-kernel-doc-warnings lib/string.c --- a/lib/string.c~lib-stringc-fix-kernel-doc-warnings +++ a/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) { _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are lib-stringc-fix-kernel-doc-warnings.patch linux-next.patch docs-large-update-to-ioctl-numbertxt.patch cmpc_acpi-add-support-for-classmate-pc-acpi-devices.patch gpio-add-driver-for-max7300-i2c-gpio-extender.patch reiser4-export-remove_from_page_cache-fix.patch mutex-subsystem-synchro-test-module-add-missing-header-file.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html