From patchwork Fri Apr 9 13:20:40 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavan Nikhilesh Bhagavatula X-Patchwork-Id: 90981 X-Patchwork-Delegate: jerinj@marvell.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id C9711A0579; Fri, 9 Apr 2021 15:20:57 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7032D4068B; Fri, 9 Apr 2021 15:20:57 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 9C3484014D for ; Fri, 9 Apr 2021 15:20:55 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 139DKUwl010161; Fri, 9 Apr 2021 06:20:54 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=s8u1ZtnyRYgmudwEu1xks/lMcYOkVGQxzR6COKAa6aA=; b=GQF37av/lhghlxfNirXtNE9fTzGxru1JpXV1VVa8OciMreF4fKN8CYSeC+3KaSW1iNQH DUiGSB5C8XB0ioWDiiMpTodrcLtOsfeRPblaQF/rNYHbOq4vR6rJEXjV5DGAajofDeJ6 7ICywLeHLjYZcFhEWn7GY7XqrKewPPOM58rhARRJaKdsBHQFeuGOxWr1+Cxl1b5XXMVY vxJATq9YLN1JG44JuJvB94+jCmpySgotzgveB7OxMcEGpbCdrZyPnzh+UZDV/xcXvXds z82lxtjZY4hkJltOPuhzBsubLt/FFjuLFZPEe3GlpkjZFg9z7bNpy2Cs/5Lrlp85sGhu Xg== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0a-0016f401.pphosted.com with ESMTP id 37tftp9b1e-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Fri, 09 Apr 2021 06:20:54 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Fri, 9 Apr 2021 06:20:53 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Fri, 9 Apr 2021 06:20:53 -0700 Received: from BG-LT7430.marvell.com (BG-LT7430.marvell.com [10.28.177.176]) by maili.marvell.com (Postfix) with ESMTP id 9021E3F7040; Fri, 9 Apr 2021 06:20:51 -0700 (PDT) From: To: , Jay Jayatheerthan CC: , Pavan Nikhilesh Date: Fri, 9 Apr 2021 18:50:40 +0530 Message-ID: <20210409132043.949-1-pbhagavatula@marvell.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 X-Proofpoint-GUID: EGZDK2GyQ7fIolFsFrHizQgyeYQ7_s4U X-Proofpoint-ORIG-GUID: EGZDK2GyQ7fIolFsFrHizQgyeYQ7_s4U X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391, 18.0.761 definitions=2021-04-09_05:2021-04-09, 2021-04-09 signatures=0 Subject: [dpdk-dev] [PATCH] eventdev: fix doxygen for function declaration X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Pavan Nikhilesh Fix missing parameters in doxygen of function declaration. Fixes: 5b1337f0a08a ("eventdev: introduce event vector Rx capability") Signed-off-by: Pavan Nikhilesh --- lib/librte_eventdev/rte_event_eth_rx_adapter.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/librte_eventdev/rte_event_eth_rx_adapter.h b/lib/librte_eventdev/rte_event_eth_rx_adapter.h index 7407cde00..182dd2e5d 100644 --- a/lib/librte_eventdev/rte_event_eth_rx_adapter.h +++ b/lib/librte_eventdev/rte_event_eth_rx_adapter.h @@ -563,6 +563,9 @@ int rte_event_eth_rx_adapter_vector_limits_get( * If rx_queue_id is -1, then all Rx queues configured for the ethernet device * are configured with event vectorization. * + * @param config + * Event vector configuration structure. + * * @return * - 0: Success, Receive queue configured correctly. * - <0: Error code on failure.