From: Coly Li Date: Mon, 8 Oct 2018 12:41:11 +0000 (+0800) Subject: bcache: fix typo in code comments of closure_return_with_destructor() X-Git-Tag: v5.15~7818^2~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4516da427fcf214af7d826273ab275f1d6e56ef0;p=platform%2Fkernel%2Flinux-starfive.git bcache: fix typo in code comments of closure_return_with_destructor() The code comments of closure_return_with_destructor() in closure.h makrs function name as closure_return(). This patch fixes this type with the correct name - closure_return_with_destructor. Signed-off-by: Coly Li Signed-off-by: Jens Axboe --- diff --git a/drivers/md/bcache/closure.h b/drivers/md/bcache/closure.h index eca0d496..c88cdc4 100644 --- a/drivers/md/bcache/closure.h +++ b/drivers/md/bcache/closure.h @@ -345,7 +345,8 @@ do { \ } while (0) /** - * closure_return - finish execution of a closure, with destructor + * closure_return_with_destructor - finish execution of a closure, + * with destructor * * Works like closure_return(), except @destructor will be called when all * outstanding refs on @cl have been dropped; @destructor may be used to safely