From: Julian Wiedmann Date: Fri, 2 Oct 2020 09:16:49 +0000 (+0200) Subject: s390/lib: fix kernel doc for memcmp() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4aa32ee3c058847ff935d1a65da309b67b65354a;p=linux.git s390/lib: fix kernel doc for memcmp() s/count/n Signed-off-by: Julian Wiedmann Acked-by: Christian Borntraeger Signed-off-by: Vasily Gorbik --- diff --git a/arch/s390/lib/string.c b/arch/s390/lib/string.c index 0e30e6e43b0c5..93b3209b94a2f 100644 --- a/arch/s390/lib/string.c +++ b/arch/s390/lib/string.c @@ -333,7 +333,7 @@ EXPORT_SYMBOL(memchr); * memcmp - Compare two areas of memory * @s1: One area of memory * @s2: Another area of memory - * @count: The size of the area. + * @n: The size of the area. */ #ifdef __HAVE_ARCH_MEMCMP int memcmp(const void *s1, const void *s2, size_t n)