diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2017-02-22 15:44:44 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-02-22 16:41:29 -0800 |
commit | 870667553af5e18b2f3402c03f8c4f82381f0ec7 (patch) | |
tree | 5b04881bff6ae51f30bd6b6b3cc8525a4865e473 /mm/filemap.c | |
parent | 74d81bfae8e3f52e956367f6ed764db269b87091 (diff) | |
download | linux-next-870667553af5e18b2f3402c03f8c4f82381f0ec7.tar.gz |
mm: fix filemap.c kernel-doc warnings
Fix kernel-doc warnings in mm/filemap.c:
mm/filemap.c:993: warning: No description found for parameter '__page'
mm/filemap.c:993: warning: Excess function parameter 'page' description in '__lock_page'
Link: http://lkml.kernel.org/r/a66fe492-518c-ad6c-5f03-5e8b721fb451@infradead.org
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/filemap.c')
-rw-r--r-- | mm/filemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/filemap.c b/mm/filemap.c index a3dbe9eff213..416d563468a3 100644 --- a/mm/filemap.c +++ b/mm/filemap.c @@ -1019,7 +1019,7 @@ EXPORT_SYMBOL_GPL(page_endio); /** * __lock_page - get a lock on the page, assuming we need to sleep to get it - * @page: the page to lock + * @__page: the page to lock */ void __lock_page(struct page *__page) { |