From: Randy Dunlap Date: Fri, 9 Nov 2012 03:04:32 +0000 (+1100) Subject: mm: fix slab.c kernel-doc warnings X-Git-Tag: next-20121112~5^2~148 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5c14fd990f476b6f961c2b1b31f8201264b6e3aa;p=karo-tx-linux.git mm: fix slab.c kernel-doc warnings Fix new kernel-doc warnings in mm/slab.c: Warning(mm/slab.c:2358): No description found for parameter 'cachep' Warning(mm/slab.c:2358): Excess function parameter 'name' description in '__kmem_cache_create' Warning(mm/slab.c:2358): Excess function parameter 'size' description in '__kmem_cache_create' Warning(mm/slab.c:2358): Excess function parameter 'align' description in '__kmem_cache_create' Warning(mm/slab.c:2358): Excess function parameter 'ctor' description in '__kmem_cache_create' Signed-off-by: Randy Dunlap Cc: Christoph Lameter Cc: Pekka Enberg Cc: Matt Mackall Signed-off-by: Andrew Morton --- diff --git a/mm/slab.c b/mm/slab.c index d87a28ba5779..8df7c7326032 100644 --- a/mm/slab.c +++ b/mm/slab.c @@ -2349,11 +2349,8 @@ static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp) /** * __kmem_cache_create - Create a cache. - * @name: A string which is used in /proc/slabinfo to identify this cache. - * @size: The size of objects to be created in this cache. - * @align: The required alignment for the objects. + * @cachep: cache management descriptor * @flags: SLAB flags - * @ctor: A constructor for the objects. * * Returns a ptr to the cache on success, NULL on failure. * Cannot be called within a int, but can be interrupted.