diff options
author | Julian Wiedmann <jwi@linux.ibm.com> | 2020-10-02 11:16:49 +0200 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2020-10-07 21:50:01 +0200 |
commit | 4aa32ee3c058847ff935d1a65da309b67b65354a (patch) | |
tree | 765abbc13ded1fae0b57a31846a340248aa9499c /arch/s390 | |
parent | 27c4f6738bdc535e42dfc1295dadc78ab7582939 (diff) | |
download | linux-4aa32ee3c058847ff935d1a65da309b67b65354a.tar.bz2 |
s390/lib: fix kernel doc for memcmp()
s/count/n
Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Acked-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/lib/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/lib/string.c b/arch/s390/lib/string.c index 0e30e6e43b0c..93b3209b94a2 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) |