From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.9 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3A476C2BA1A for ; Tue, 7 Apr 2020 03:10:12 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id F00B420716 for ; Tue, 7 Apr 2020 03:10:11 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="xhBe8/9U" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org F00B420716 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=linux-foundation.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 9DC6B8E0079; Mon, 6 Apr 2020 23:10:11 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 98DB08E0062; Mon, 6 Apr 2020 23:10:11 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 8CB438E0079; Mon, 6 Apr 2020 23:10:11 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0026.hostedemail.com [216.40.44.26]) by kanga.kvack.org (Postfix) with ESMTP id 718828E0062 for ; Mon, 6 Apr 2020 23:10:11 -0400 (EDT) Received: from smtpin15.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay05.hostedemail.com (Postfix) with ESMTP id 23A6C181AEF31 for ; Tue, 7 Apr 2020 03:10:11 +0000 (UTC) X-FDA: 76679580222.15.month84_19673eecb91e X-HE-Tag: month84_19673eecb91e X-Filterd-Recvd-Size: 2374 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by imf21.hostedemail.com (Postfix) with ESMTP for ; Tue, 7 Apr 2020 03:10:10 +0000 (UTC) Received: from localhost.localdomain (c-73-231-172-41.hsd1.ca.comcast.net [73.231.172.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id E66F32082F; Tue, 7 Apr 2020 03:10:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586229010; bh=4tCTSSzgDrAG+r7QkGyEcak8yxMTNIDZTcj2dCogQKU=; h=Date:From:To:Subject:In-Reply-To:From; b=xhBe8/9UrbjEy4fsyGsUkciZHXwoP589DekUcL8tde7mfwYkD055/vERDhUjm2OYZ WqzM4zrikdvM2O8/tNt/Hj7XQuG6MskvnPPn4ZWkiOxLgUnrSUaK4m9Atg6QbKm3q5 NBAMA22b0KJmMqFAEXiSH4P082d8g5Ci2ILDOE/w= Date: Mon, 06 Apr 2020 20:10:09 -0700 From: Andrew Morton To: akinobu.mita@gmail.com, akpm@linux-foundation.org, geert+renesas@glider.be, linux-mm@kvack.org, mm-commits@vger.kernel.org, torvalds@linux-foundation.org Subject: [patch 115/166] lib/scatterlist: fix sg_copy_buffer() kerneldoc Message-ID: <20200407031009.EWZ4Qzc6U%akpm@linux-foundation.org> In-Reply-To: <20200406200254.a69ebd9e08c4074e41ddebaf@linux-foundation.org> User-Agent: s-nail v14.8.16 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: From: Geert Uytterhoeven Subject: lib/scatterlist: fix sg_copy_buffer() kerneldoc Add the missing closing parenthesis to the description for the to_buffer parameter of sg_copy_buffer(). Link: http://lkml.kernel.org/r/20200212084241.8778-1-geert+renesas@glider.be Signed-off-by: Geert Uytterhoeven Cc: Akinobu Mita --- lib/scatterlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/lib/scatterlist.c~lib-scatterlist-fix-sg_copy_buffer-kerneldoc +++ a/lib/scatterlist.c @@ -832,7 +832,7 @@ EXPORT_SYMBOL(sg_miter_stop); * @buflen: The number of bytes to copy * @skip: Number of bytes to skip before copying * @to_buffer: transfer direction (true == from an sg list to a - * buffer, false == from a buffer to an sg list + * buffer, false == from a buffer to an sg list) * * Returns the number of copied bytes. * _