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=-13.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 32E67C55179 for ; Fri, 23 Oct 2020 16:37:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D52E0206B5 for ; Fri, 23 Oct 2020 16:37:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603471063; bh=jeh4YC+MxwGcd5mb9mDgW+smzNJeeNqLiKDD0oaDL0E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=v8vRVVDwfE0zE+zcnv4u9YO/hsSpyypMAYbZ/mAaqpEPln4kVt/Cz21hViHDLArac oIR4KfgrDQDBx7RPGjV3uOdfqZ8FeKTbvchAlPVlu0PADTZfULjggk8L+j2zXcrvlH 6f1PmO6b4s6JiRE5S0kSUxAeioUrnLg2OWyLm9bc= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750451AbgJWQhX (ORCPT ); Fri, 23 Oct 2020 12:37:23 -0400 Received: from mail.kernel.org ([198.145.29.99]:33734 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751844AbgJWQdu (ORCPT ); Fri, 23 Oct 2020 12:33:50 -0400 Received: from mail.kernel.org (ip5f5ad5a3.dynamic.kabel-deutschland.de [95.90.213.163]) (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 3BA49246B0; Fri, 23 Oct 2020 16:33:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603470828; bh=jeh4YC+MxwGcd5mb9mDgW+smzNJeeNqLiKDD0oaDL0E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=dp5HB/65JaGeWDQP2R/ITfNqB1n/bHLrckWbFxT5Bp9FOnlfGcjRGyEKH0DGZtaQP 0QJIH6hjUZqRVe4jOzmY6HVrR+JwJ7wapnt/ZbDverJRmvQrYY23iK8+xDjbgIK0TD Mgfqtra+eUaq0iZWCMK5wW6w2jiKd0IFMRzUEUtU= Received: from mchehab by mail.kernel.org with local (Exim 4.94) (envelope-from ) id 1kW00g-002Awp-5N; Fri, 23 Oct 2020 18:33:46 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , Greg Kroah-Hartman , Manohar Vanga , Martyn Welch , devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: [PATCH v3 33/56] vme: fix two kernel-doc markups Date: Fri, 23 Oct 2020 18:33:20 +0200 Message-Id: <51bfb6724975302f66d64e4ad71de451a7cbbf99.1603469755.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org Some identifiers have different names between their prototypes and the kernel-doc markup. Signed-off-by: Mauro Carvalho Chehab --- drivers/vme/vme.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/vme/vme.c b/drivers/vme/vme.c index b398293980b6..bb4fed52f74d 100644 --- a/drivers/vme/vme.c +++ b/drivers/vme/vme.c @@ -73,7 +73,7 @@ static struct vme_bridge *find_bridge(struct vme_resource *resource) } /** - * vme_free_consistent - Allocate contiguous memory. + * vme_alloc_consistent - Allocate contiguous memory. * @resource: Pointer to VME resource. * @size: Size of allocation required. * @dma: Pointer to variable to store physical address of allocation. @@ -647,7 +647,7 @@ int vme_master_get(struct vme_resource *resource, int *enabled, EXPORT_SYMBOL(vme_master_get); /** - * vme_master_write - Read data from VME space into a buffer. + * vme_master_read - Read data from VME space into a buffer. * @resource: Pointer to VME master resource. * @buf: Pointer to buffer where data should be transferred. * @count: Number of bytes to transfer. -- 2.26.2