From: Masahiro Yamada Date: Mon, 8 Feb 2016 07:09:08 +0000 (+0900) Subject: scatterlist: fix a typo in comment block of sg_miter_stop() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4ba6a2b28f111e4c9621487612056d10f3f4a6ca;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git scatterlist: fix a typo in comment block of sg_miter_stop() Fix the doubled "started" and tidy up the following sentences. Signed-off-by: Masahiro Yamada Signed-off-by: Linus Torvalds --- diff --git a/lib/scatterlist.c b/lib/scatterlist.c index bafa9933fa76..004fc70fc56a 100644 --- a/lib/scatterlist.c +++ b/lib/scatterlist.c @@ -598,9 +598,9 @@ EXPORT_SYMBOL(sg_miter_next); * * Description: * Stops mapping iterator @miter. @miter should have been started - * started using sg_miter_start(). A stopped iteration can be - * resumed by calling sg_miter_next() on it. This is useful when - * resources (kmap) need to be released during iteration. + * using sg_miter_start(). A stopped iteration can be resumed by + * calling sg_miter_next() on it. This is useful when resources (kmap) + * need to be released during iteration. * * Context: * Preemption disabled if the SG_MITER_ATOMIC is set. Don't care