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 7590CC55179 for ; Fri, 23 Oct 2020 16:37:16 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2DB4F208C3 for ; Fri, 23 Oct 2020 16:37:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603471036; bh=4cGQZu6GXTOYP+AFlrfRWtgyOlj2+ko5AakCb/DydP4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=AwudQsXt5wXdq+EcdUONikkDKwezHebOkziM9E8E+0o8JGrH0Ih2B4rdYJ4Qi7Cs4 25wAdaTj3gCD9U7DHt+xpPA+m5t8v2Ef7GFFJAqikfac+qZJEzVqxota2V0155Ea1N sDZvnGCN2qXfcExVy48+f/Dy3P99hnE4LTcIlwt0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752194AbgJWQhI (ORCPT ); Fri, 23 Oct 2020 12:37:08 -0400 Received: from mail.kernel.org ([198.145.29.99]:33164 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751851AbgJWQdu (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 64BCA246BA; 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=4cGQZu6GXTOYP+AFlrfRWtgyOlj2+ko5AakCb/DydP4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Lulq4D7WbTz6Btr9PN4P4SPxFi8Mxd1X26ceXOqcG+JNF84tqxbPROnMQLucLs5ow +0YsGO1fBYyMfarzF6uoyPFR1/REnHortZJ+i2NiJ/Ws94zQclVhaEMJe8Nb8zDa3b hOxUlFk8SVnu6B8Sxt146lNh0503BIAGEFanzWHM= Received: from mchehab by mail.kernel.org with local (Exim 4.94) (envelope-from ) id 1kW00g-002AxD-D3; Fri, 23 Oct 2020 18:33:46 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , linux-kernel@vger.kernel.org Subject: [PATCH v3 41/56] connector: fix a kernel-doc markup Date: Fri, 23 Oct 2020 18:33:28 +0200 Message-Id: <12a41727308652cf65e25ec48dd6f86b9f35e715.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-kernel@vger.kernel.org A function has a different name between their prototype and its kernel-doc markup. Signed-off-by: Mauro Carvalho Chehab --- include/linux/connector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/connector.h b/include/linux/connector.h index cb732643471b..6bdb56662675 100644 --- a/include/linux/connector.h +++ b/include/linux/connector.h @@ -99,7 +99,7 @@ void cn_del_callback(struct cb_id *id); int cn_netlink_send_mult(struct cn_msg *msg, u16 len, u32 portid, u32 group, gfp_t gfp_mask); /** - * cn_netlink_send_mult - Sends message to the specified groups. + * cn_netlink_send - Sends message to the specified groups. * * @msg: message header(with attached data). * @portid: destination port. -- 2.26.2