From: Randy Dunlap Date: Wed, 29 Oct 2008 21:01:09 +0000 (-0700) Subject: mm: fix kernel-doc function notation X-Git-Tag: upstream/snapshot3+hdmi~21736 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e99c97ade53fb6f5e665f2960eb86c624a532d7b;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git mm: fix kernel-doc function notation Delete excess kernel-doc notation in mm/ subdirectory. Actually this is a kernel-doc notation fix. Warning(/var/linsrc/linux-2.6.27-git10//mm/vmalloc.c:902): Excess function parameter or struct member 'returns' description in 'vm_map_ram' Signed-off-by: Randy Dunlap Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 0365369..f1cc03b 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -897,7 +897,8 @@ EXPORT_SYMBOL(vm_unmap_ram); * @count: number of pages * @node: prefer to allocate data structures on this node * @prot: memory protection to use. PAGE_KERNEL for regular RAM - * @returns: a pointer to the address that has been mapped, or NULL on failure + * + * Returns: a pointer to the address that has been mapped, or %NULL on failure */ void *vm_map_ram(struct page **pages, unsigned int count, int node, pgprot_t prot) {