From: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Fix kernel-doc warning in fs/direct-io.c: ../fs/direct-io.c:258: warning: Excess function parameter 'offset' description in 'dio_complete' Also, don't mark this function as having kernel-doc notation since it is not exported. Fixes: 6d544bb4d901 ("dio: centralize completion in dio_complete()") Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Cc: Zach Brown <zab@xxxxxxxxx> Cc: Alexander Viro <viro@xxxxxxxxxxxxxxxxxx> Cc: linux-fsdevel@xxxxxxxxxxxxxxx --- fs/direct-io.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) --- linux-next-20191008.orig/fs/direct-io.c +++ linux-next-20191008/fs/direct-io.c @@ -241,9 +241,8 @@ void dio_warn_stale_pagecache(struct fil } } -/** +/* * dio_complete() - called when all DIO BIO I/O has been completed - * @offset: the byte offset in the file of the completed operation * * This drops i_dio_count, lets interested parties know that a DIO operation * has completed, and calculates the resulting return code for the operation.