From 0db10c8e8ff24559b3768b8d010191b01e0940ae Mon Sep 17 00:00:00 2001 From: Borislav Petkov Date: Thu, 11 Oct 2012 21:05:10 +0200 Subject: krealloc: Fix kernel-doc comment It should say "@new_size" and not "@size". Correct that. Signed-off-by: Borislav Petkov Cc: trivial@kernel.org Signed-off-by: Jiri Kosina --- mm/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mm/util.c') diff --git a/mm/util.c b/mm/util.c index 8c7265afa29f..3a5278c08d76 100644 --- a/mm/util.c +++ b/mm/util.c @@ -145,7 +145,7 @@ EXPORT_SYMBOL(__krealloc); * * The contents of the object pointed to are preserved up to the * lesser of the new and old sizes. If @p is %NULL, krealloc() - * behaves exactly like kmalloc(). If @size is 0 and @p is not a + * behaves exactly like kmalloc(). If @new_size is 0 and @p is not a * %NULL pointer, the object pointed to is freed. */ void *krealloc(const void *p, size_t new_size, gfp_t flags) -- cgit