diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2012-06-20 15:53:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-06-20 17:39:36 -0400 |
commit | eb4546bbbdb160aff084d50511165f385756af18 (patch) | |
tree | c9c0b1f367ae4f2deea43f06081356613b2b6e3e /mm/memory.c | |
parent | dad7557eb705688040aac134efa5418b66d5ed92 (diff) |
mm/memory.c: fix kernel-doc warnings
Fix kernel-doc warnings in mm/memory.c:
Warning(mm/memory.c:1377): No description found for parameter 'start'
Warning(mm/memory.c:1377): Excess function parameter 'address' description in 'zap_page_range'
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/memory.c')
-rw-r--r-- | mm/memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory.c b/mm/memory.c index 8762c4f915fc..2466d1250231 100644 --- a/mm/memory.c +++ b/mm/memory.c | |||
@@ -1374,7 +1374,7 @@ void unmap_vmas(struct mmu_gather *tlb, | |||
1374 | /** | 1374 | /** |
1375 | * zap_page_range - remove user pages in a given range | 1375 | * zap_page_range - remove user pages in a given range |
1376 | * @vma: vm_area_struct holding the applicable pages | 1376 | * @vma: vm_area_struct holding the applicable pages |
1377 | * @address: starting address of pages to zap | 1377 | * @start: starting address of pages to zap |
1378 | * @size: number of bytes to zap | 1378 | * @size: number of bytes to zap |
1379 | * @details: details of nonlinear truncation or shared cache invalidation | 1379 | * @details: details of nonlinear truncation or shared cache invalidation |
1380 | * | 1380 | * |